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