You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ICharacter.cs 645 B

12345678910111213141516171819202122
  1. using System;
  2. using Preparation.Utility;
  3. namespace Preparation.Interface
  4. {
  5. public interface ICharacter : IGameObj
  6. {
  7. public int TeamID { get; }
  8. public int HP { get; set; }
  9. public int Score { get; }
  10. public void AddScore(int add);
  11. public double Vampire { get; }
  12. public PlayerStateType PlayerState { get; }
  13. public BulletType BulletOfPlayer { get; set; }
  14. public CharacterType CharacterType { get; }
  15. public int UpdateBulletNum(int time);
  16. public bool IsGhost();
  17. }
  18. public interface IStudent : ICharacter { }
  19. public interface IGolem : IStudent { }
  20. }