Add CScriptGenerator

What is even that AcceptScriptMsg


Former-commit-id: 9fcf74b45b
This commit is contained in:
Henrique Gemignani Passos Lima
2022-11-30 23:26:00 +02:00
parent b8b95d04c5
commit 95ea39c9cc
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;
};