mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 03:14:47 +00:00
22 lines
503 B
C#
22 lines
503 B
C#
using Entitas;
|
|
using NotImplementedException = System.NotImplementedException;
|
|
|
|
namespace JNGame.Sync.System
|
|
{
|
|
/// <summary>
|
|
/// 帧同步 - 视图系统
|
|
/// </summary>
|
|
public class SViewSystem : SBaseSystem,IJNSyncCycle,IExecuteSystem
|
|
{
|
|
public virtual void Execute(){}
|
|
public virtual void OnSyncStart()
|
|
{
|
|
}
|
|
public virtual void OnSyncUpdate(int dt)
|
|
{
|
|
}
|
|
public virtual void OnSyncDestroy()
|
|
{
|
|
}
|
|
}
|
|
} |