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