Initial implementation of lpxclient

This commit is contained in:
2021-11-09 16:27:39 -05:00
parent 6172fb983c
commit 051e6bc8bf
7 changed files with 229 additions and 29 deletions

View File

@@ -22,6 +22,13 @@ enum WorldType {
WORLD_TYPE_MASTER,
};
enum MessageType {
MSG_NULL,
MSG_DIFF,
MSG_ACK,
MSG_INVOKE,
};
using StringVec = std::vector<std::string>;
using StringPair = std::pair<std::string, std::string>;
using LuaSourceVec = std::vector<StringPair>;