IStart.cs 192 B

12345678910
  1. namespace Model
  2. {
  3. /// <summary>
  4. /// World的Componet实现该接口后,会在World.Start时调用该Start方法
  5. /// </summary>
  6. internal interface IStart
  7. {
  8. void Start();
  9. }
  10. }