miduo_client/Assets/LuaFramework/Scripts/Manager/Interface/ITimerBehaviour.cs

8 lines
137 B
C#
Raw Normal View History

2020-05-09 13:31:21 +08:00
using System;
using System.Collections;
namespace GameLogic {
public interface ITimerBehaviour {
void TimerUpdate();
}
}