18 lines
202 B
C#
18 lines
202 B
C#
using System;
|
|
|
|
namespace SoapCustomVariable
|
|
{
|
|
[Serializable]
|
|
public enum FishState
|
|
{
|
|
idle = 0,
|
|
patrol = 1,
|
|
seek = 2,
|
|
eat = 3,
|
|
followTarget = 4,
|
|
chase = 5,
|
|
fight = 6,
|
|
catched = 7
|
|
}
|
|
}
|