Spaces:
Runtime error
Runtime error
File size: 210 Bytes
ac55997 |
1 2 3 4 5 6 7 8 9 10 11 12 |
using Photon.Deterministic;
namespace Quantum
{
public unsafe class TurnTimerSystem : SystemMainThread
{
public override void Update(Frame f)
{
f.Global->CurrentTurn.Update(f);
}
}
} |