Files
BingoGrassland/Assets/BingoSun/Scripts/Keril/BaseSystem.cs
T
2026-04-20 13:49:36 +08:00

39 lines
611 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace BingoBrain.Core
{
/// <summary>
/// 系统
/// 承载逻辑
/// 1EntitySystem
/// 2GameObjectSystem
/// </summary>
public abstract class BaseSystem
{
public BaseSystem()
{
}
public virtual void Init()
{
}
public virtual void InitLate()
{
}
public virtual void Dispose()
{
}
public virtual void Update()
{
}
public virtual void LateUpdate()
{
}
public virtual void FixedUpdate()
{
}
}
}