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