namespace Model { /// <summary> /// 实现了该接口的World Componet会每帧刷新 /// </summary> public interface IUpdate { void Update(); } }