16 lines
364 B
C#
16 lines
364 B
C#
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();
|
|
}
|
|
} |