diff options
Diffstat (limited to 'Player.cs')
-rw-r--r-- | Player.cs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Player.cs b/Player.cs deleted file mode 100644 index 55ff387..0000000 --- a/Player.cs +++ /dev/null @@ -1,18 +0,0 @@ -using UnityEngine; - -public class Player : MonoBehaviour -{ - public static Player localPlayer; - - public bool isLocalPlayer; - - public Transform torso; - - private void Start() - { - if (isLocalPlayer) - { - localPlayer = this; - } - } -} |