(client) feat:添加Tick接口及时钟控制

This commit is contained in:
m0_75251201
2025-07-09 11:35:52 +08:00
parent 11004d5595
commit 10136a987d
14 changed files with 225 additions and 0 deletions

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: f07f237520336f549bf53af368893863
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,11 @@
namespace Cell
{
public interface ITick
{
public void Tick()
{
}
}
}

View File

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 3897d32ba1dc53c4ca44915fd7372a99

View File

@ -0,0 +1,9 @@
namespace Cell
{
public interface ITickPhysics
{
public void TickPhysics()
{
}
}
}

View File

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 13a5a7579420a2a43bdb17c2f7e586f5

View File

@ -0,0 +1,9 @@
namespace Cell
{
public interface ITickUI
{
public void TickUI()
{
}
}
}

View File

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: db424d45aa0c9dd41b739434758b274a