IRunner.cs 166 B

12345678910
  1. namespace Model
  2. {
  3. /// <summary>
  4. /// 实现了该接口的World Componet会每帧刷新
  5. /// </summary>
  6. public interface IRunner
  7. {
  8. void Run();
  9. }
  10. }