Initial Commit
This commit is contained in:
+35
@@ -0,0 +1,35 @@
|
||||
namespace Zenject.SpaceFighter
|
||||
{
|
||||
public class PlayerInputState
|
||||
{
|
||||
public bool IsMovingLeft
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public bool IsMovingRight
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public bool IsMovingUp
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public bool IsMovingDown
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public bool IsFiring
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user