Add CScriptGenerator

What is even that AcceptScriptMsg
This commit is contained in:
Henrique Gemignani Passos Lima
2022-11-30 23:26:00 +02:00
parent 8aaf207191
commit 9fcf74b45b
7 changed files with 224 additions and 22 deletions

View File

@@ -10,6 +10,8 @@ public:
pair() {}
pair(const L& first, const R& second) : first(first), second(second) {}
bool operator==(const pair& other) const { return first == other.first && second == other.second; }
L first;
R second;
};