13 lines
291 B
C#
13 lines
291 B
C#
![]() |
using UnityEngine;
|
||
|
|
||
|
// ReSharper disable once CheckNamespace
|
||
|
namespace BlueWaterProject
|
||
|
{
|
||
|
public interface IInIslandPlayer
|
||
|
{
|
||
|
GameObject GameObject { get; }
|
||
|
Transform Transform { get; }
|
||
|
Rigidbody Rb { get; set; }
|
||
|
bool UseRigidbody { get; set; }
|
||
|
}
|
||
|
}
|