备份CatanBuilding瘦身独立工程
This commit is contained in:
16
Assets/Scripts/ModuleModel/IModel.cs
Normal file
16
Assets/Scripts/ModuleModel/IModel.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace ModuleModel
|
||||
{
|
||||
public interface IModel
|
||||
{
|
||||
int ModuleId { get; set; }
|
||||
void Init();
|
||||
void InitServerData(Dictionary<string, string> userDatas);
|
||||
void InitConfig();
|
||||
void AfterServerDataAnalysis();
|
||||
void DoFrameUpdate(int time, int delta);
|
||||
|
||||
void Dispose();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user