| 4 | namespace AISCRIPT |
| 5 | { |
| 6 | class Build : public Opcode |
| 7 | { |
| 8 | public: |
| 9 | // Ctor |
| 10 | Build() : Opcode(Enum::BUILD) {}; |
| 11 | |
| 12 | // Execute |
| 13 | virtual bool execute(aithread &thread) const; |
| 14 | }; |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected