Starting new VN Structure
This commit is contained in:
10
src/dawntools/vnscenetool/events/CMakeLists.txt
Normal file
10
src/dawntools/vnscenetool/events/CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
# Sources
|
||||
target_sources(vnscenetool
|
||||
PRIVATE
|
||||
VNPositionParser.cpp
|
||||
)
|
25
src/dawntools/vnscenetool/events/VNPositionParser.cpp
Normal file
25
src/dawntools/vnscenetool/events/VNPositionParser.cpp
Normal file
@ -0,0 +1,25 @@
|
||||
// Copyright (c) 2023 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#include "VNPositionParser.hpp"
|
||||
|
||||
using namespace Dawn;
|
||||
|
||||
std::vector<std::string> VNPositionParser::getRequiredAttributes() {
|
||||
return { };
|
||||
}
|
||||
|
||||
std::map<std::string, std::string> VNPositionParser::getOptionalAttributes() {
|
||||
return { };
|
||||
}
|
||||
|
||||
int32_t VNPositionParser::onParse(
|
||||
Xml *node,
|
||||
std::map<std::string, std::string> values,
|
||||
struct VNPosition *out,
|
||||
std::string *error
|
||||
) {
|
||||
return 0;
|
||||
}
|
6
src/dawntools/vnscenetool/events/VNPositionParser.hpp
Normal file
6
src/dawntools/vnscenetool/events/VNPositionParser.hpp
Normal file
@ -0,0 +1,6 @@
|
||||
// Copyright (c) 2023 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#pragma once
|
Reference in New Issue
Block a user