(client) feat:主要实现实体的行为树和工作类 (#40)

Co-authored-by: zzdxxz <2079238449@qq.com>
Co-committed-by: zzdxxz <2079238449@qq.com>
This commit is contained in:
2025-07-21 13:58:58 +08:00
committed by TheRedApricot
parent 389376ec47
commit 28ddcda9a0
87 changed files with 9052 additions and 2504 deletions

View File

@ -7,23 +7,17 @@ namespace Base
{
public interface ITick
{
public void Tick()
{
}
public void Tick();
}
public interface ITickPhysics
{
public void TickPhysics()
{
}
public void TickPhysics();
}
public interface ITickUI
{
public void TickUI()
{
}
public void TickUI();
}
public class Clock : MonoSingleton<Clock>