aboutsummaryrefslogtreecommitdiff
path: root/reference
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2025-07-01 07:21:10 -0300
committerfusion32 <marcopuzziello@gmail.com>2025-07-01 07:21:10 -0300
commit6243967f1fac3af8ed3e72790cabed0f79978bdb (patch)
tree35f0d27b4c280622c368a9fa94815b8deb7a990f /reference
parent6c8aa85b8b578db03a8c5f0dc0b7e80605592d45 (diff)
downloadgame-6243967f1fac3af8ed3e72790cabed0f79978bdb.tar.gz
game-6243967f1fac3af8ed3e72790cabed0f79978bdb.zip
fix `operator=` for `TChannel`, `TParty`, and `THouse`
I had focused on copying the `vector` fields for theses structs but, being the copy operator, you need to copy everything over.
Diffstat (limited to 'reference')
-rw-r--r--reference/enums.hh11
1 files changed, 0 insertions, 11 deletions
diff --git a/reference/enums.hh b/reference/enums.hh
index 2f95bfb..47d5196 100644
--- a/reference/enums.hh
+++ b/reference/enums.hh
@@ -8,14 +8,3 @@ enum CHANNEL: int {
REALLIFE_CHANNEL=6,
HELP_CHANNEL=7
};
-
-enum TReaderThreadOrderType: int {
- ORDER_TERMINATE=0,
- ORDER_LOADSECTOR=1,
- ORDER_LOADCHARACTER=2
-};
-
-enum TReaderThreadReplyType: int {
- REPLY_SECTORDATA=0,
- REPLY_CHARACTERDATA=1
-};