(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,11 @@
namespace Cell
{
public interface ITick
{
public void Tick()
{
}
}
}