summary refs log tree commit diff stats
path: root/src/message_system.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2021-02-12 00:14:38 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2021-02-12 00:14:38 -0500
commit19be2ac58b09c5240a32e6a4f41cd9f6cda03d07 (patch)
tree2899673572cdb25645f425c733c57bb9c719d5b7 /src/message_system.h
parent81d1afa871c947ec6ba44e11cd6041fe16ed5756 (diff)
downloadtanetane-19be2ac58b09c5240a32e6a4f41cd9f6cda03d07.tar.gz
tanetane-19be2ac58b09c5240a32e6a4f41cd9f6cda03d07.tar.bz2
tanetane-19be2ac58b09c5240a32e6a4f41cd9f6cda03d07.zip
Added message bullets
Diffstat (limited to 'src/message_system.h')
-rw-r--r--src/message_system.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/message_system.h b/src/message_system.h index ea27f14..7f9d287 100644 --- a/src/message_system.h +++ b/src/message_system.h
@@ -24,6 +24,7 @@ struct MessageLine {
24 bool pause = false; 24 bool pause = false;
25 bool isChoice = false; 25 bool isChoice = false;
26 int choicePos[2] = {-1, -1}; 26 int choicePos[2] = {-1, -1};
27 bool bulleted = false;
27}; 28};
28 29
29class MessageSystem : public System { 30class MessageSystem : public System {