blob: af2faf780fdff9e99f8710879461db96bba7a945 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include "ConditionScript.hpp"
using namespace OpenVic;
bool ConditionScript::_parse_script(ast::NodeCPtr root, GameManager const& game_manager) {
// TODO - parse condition script
return true;
}
|