mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-29 16:37:59 +01:00
24 lines
239 B
C#
24 lines
239 B
C#
|
namespace Fie.Object
|
||
|
{
|
||
|
public interface FieObjectInterface
|
||
|
{
|
||
|
FieObjectBaseState baseState
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
FieObjectGroundState groundState
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
FieObjectFlipState flipState
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
}
|
||
|
}
|