Removed unused variable

This commit is contained in:
OverflowNarhoym
2022-02-21 16:46:03 +01:00
parent 11897b2c4c
commit 069a1da352
8 changed files with 73 additions and 164 deletions

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: b408a30f09ef434ba0049326be060a01
timeCreated: 1645440974

View File

@@ -0,0 +1,6 @@
namespace Entity
{
public interface IMovement
{
}
}

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 9f2ac0c9f14b4b33a8a3c656d94ecad2
timeCreated: 1645440963

View File

@@ -0,0 +1,8 @@
using UnityEngine;
namespace Entity.Player
{
public class PlayerController : MonoBehaviour, IMovement
{
}
}

View File

@@ -1,9 +0,0 @@
using UnityEngine;
namespace Player
{
public class PlayerController : MonoBehaviour
{
private int i;
}
}