custom-chatbot / data /TurnTimerSystem.cs
fastx's picture
Upload 84 files
ac55997
raw
history blame
210 Bytes
using Photon.Deterministic;
namespace Quantum
{
public unsafe class TurnTimerSystem : SystemMainThread
{
public override void Update(Frame f)
{
f.Global->CurrentTurn.Update(f);
}
}
}