19 lines
267 B
C#
19 lines
267 B
C#
namespace UFS2.Gameplay
|
|
{
|
|
public enum FishState
|
|
{
|
|
Idle = 0,
|
|
MoveToWaypoint = 1,
|
|
Interest = 2,
|
|
Dash = 3,
|
|
Fight = 4,
|
|
Atack = 5,
|
|
Stun = 6,
|
|
Catched = 7,
|
|
BaitEat = 8,
|
|
MultiplayerIdle = 9,
|
|
MultiplayerMoveToWaypoint = 10,
|
|
MultiplayerHide = 11
|
|
}
|
|
}
|