Spaces:
Runtime error
Runtime error
| namespace Quantum | |
| { | |
| public unsafe abstract partial class AIFunctionInt | |
| { | |
| public abstract int Execute(Frame frame, EntityRef entity); | |
| } | |
| [] | |
| [] | |
| public unsafe partial class DefaultAIFunctionInt : AIFunctionInt | |
| { | |
| public override int Execute(Frame frame, EntityRef entity) | |
| { | |
| return 0; | |
| } | |
| } | |
| } | |