Fixed / Finished Go To event

This commit is contained in:
2023-04-25 19:20:12 -07:00
parent a0eaa4b0ff
commit 556b731c0e
5 changed files with 27 additions and 1 deletions

View File

@ -10,6 +10,7 @@
#include "VNWaitEventParser.hpp"
#include "VNParallelEventParser.hpp"
#include "VNMarkerParser.hpp"
#include "VNGoToMarkerEventParser.hpp"
namespace Dawn {
struct VNSceneEvent;
@ -24,7 +25,8 @@ namespace Dawn {
VN_SCENE_EVENT_TYPE_SET,
VN_SCENE_EVENT_TYPE_WAIT,
VN_SCENE_EVENT_TYPE_PARALLEL,
VN_SCENE_EVENT_TYPE_MARKER
VN_SCENE_EVENT_TYPE_MARKER,
VN_SCENE_EVENT_TYPE_GOTO_MARKER
};
struct VNParallelEvent {
@ -40,6 +42,7 @@ namespace Dawn {
struct VNWaitEvent wait;
struct VNParallelEvent parallel;
struct VNMarker marker;
struct VNGoToMarkerEvent gotoMarker;
};
class VNSceneEventsParser : public XmlParser<struct VNSceneEventList> {