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

8 lines
137 B
C#

using System;
using System.Collections;
namespace GameLogic {
public interface ITimerBehaviour {
void TimerUpdate();
}
}