Added default font editing to VN

This commit is contained in:
2023-07-12 22:17:11 -07:00
parent 2eb441dfb3
commit 5b816a4316
14 changed files with 131 additions and 12 deletions

View File

@ -15,6 +15,7 @@
#include "VNChoiceSetEventParser.hpp"
#include "VNIfEventParser.hpp"
#include "VNSceneChangeEventParser.hpp"
#include "VNSetDefaultFontEventParser.hpp"
namespace Dawn {
struct VNSceneEvent;
@ -34,7 +35,8 @@ namespace Dawn {
VN_SCENE_EVENT_TYPE_CHOICES,
VN_SCENE_EVENT_TYPE_CHOICE_SET,
VN_SCENE_EVENT_TYPE_IF,
VN_SCENE_EVENT_TYPE_SCENE_CHANGE
VN_SCENE_EVENT_TYPE_SCENE_CHANGE,
VN_SCENE_EVENT_SET_DEFAULT_FONT
};
struct VNParallelEvent {
@ -61,6 +63,7 @@ namespace Dawn {
struct VNChoiceSetEvent choiceSet;
struct VNIfEvent ifEvent;
struct VNSceneChangeEvent sceneChange;
struct VNSetFont setDefaultFont;
};
class VNSceneEventsParser : public XmlParser<struct VNSceneEventList> {