1234567891011121314151617181920212223 |
- namespace FL.Battle
- {
- public class MonsterEntity : Entity
- {
- public override EEntityType EntityType => EEntityType.Monster;
-
-
-
-
-
-
-
-
-
- public int BirthDelay { get; set; }
-
-
-
-
- public int BirthCurve { get; set; }
- public bool IsBoss { get; set; }
- }
- }
|