Removed unused variable
This commit is contained in:
3
Assets/Scripts/Entity.meta
Normal file
3
Assets/Scripts/Entity.meta
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b408a30f09ef434ba0049326be060a01
|
||||
timeCreated: 1645440974
|
6
Assets/Scripts/Entity/IMovement.cs
Normal file
6
Assets/Scripts/Entity/IMovement.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Entity
|
||||
{
|
||||
public interface IMovement
|
||||
{
|
||||
}
|
||||
}
|
3
Assets/Scripts/Entity/IMovement.cs.meta
Normal file
3
Assets/Scripts/Entity/IMovement.cs.meta
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9f2ac0c9f14b4b33a8a3c656d94ecad2
|
||||
timeCreated: 1645440963
|
8
Assets/Scripts/Entity/Player/PlayerController.cs
Normal file
8
Assets/Scripts/Entity/Player/PlayerController.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Entity.Player
|
||||
{
|
||||
public class PlayerController : MonoBehaviour, IMovement
|
||||
{
|
||||
}
|
||||
}
|
@@ -1,9 +0,0 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Player
|
||||
{
|
||||
public class PlayerController : MonoBehaviour
|
||||
{
|
||||
private int i;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user