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 207 B

1234567891011
  1. using System;
  2. using Preparation.Utility;
  3. namespace Preparation.Interface
  4. {
  5. public interface ICharacter : IGameObj
  6. {
  7. public long TeamID { get; }
  8. public int HP { get; set; }
  9. }
  10. }