Marker progress

This commit is contained in:
2023-04-25 18:22:55 -07:00
parent a231b14df4
commit 88f4c5684a
9 changed files with 103 additions and 3 deletions

View File

@ -9,6 +9,7 @@
#include "VNSetEventParser.hpp"
#include "VNWaitEventParser.hpp"
#include "VNParallelEventParser.hpp"
#include "VNMarkerParser.hpp"
namespace Dawn {
struct VNSceneEvent;
@ -22,7 +23,8 @@ namespace Dawn {
VN_SCENE_EVENT_TYPE_POSITION,
VN_SCENE_EVENT_TYPE_SET,
VN_SCENE_EVENT_TYPE_WAIT,
VN_SCENE_EVENT_TYPE_PARALLEL
VN_SCENE_EVENT_TYPE_PARALLEL,
VN_SCENE_EVENT_TYPE_MARKER
};
struct VNParallelEvent {
@ -37,6 +39,7 @@ namespace Dawn {
struct VNSetEvent set;
struct VNWaitEvent wait;
struct VNParallelEvent parallel;
struct VNMarker marker;
};
class VNSceneEventsParser : public XmlParser<struct VNSceneEventList> {