Spaces:
Runtime error
Runtime error
File size: 214 Bytes
ce81a16 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using Photon.Deterministic;
using System;
namespace Quantum
{
public abstract unsafe partial class HFSMDecision
{
public string Label;
public abstract Boolean Decide(Frame frame, EntityRef entity);
}
}
|