IBattleObject.cs 179 B

1234567891011
  1. using System;
  2. public interface IBattleObject : IMapObject
  3. {
  4. int id{get; set;}
  5. int typeId{get;set;}
  6. int userId{get; set;}
  7. TeamUtil.Team team{get;set;}
  8. bool isMoving{get;}
  9. }