| 17 | constexpr int kMaxRemoteExecTargetArrayDepth = 16; |
| 18 | |
| 19 | Object* GetValObject(GameValuePar oper) |
| 20 | { |
| 21 | if (oper.GetType() == GameObject) |
| 22 | { |
| 23 | return static_cast<GameDataObject*>(oper.GetData())->GetObject(); |
| 24 | } |
| 25 | return nullptr; |
| 26 | } |
| 27 | |
| 28 | AIGroup* GetValGroup(GameValuePar oper) |
| 29 | { |
no test coverage detected