1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/includes/xna/content/serializer.hpp
2024-11-20 14:45:03 -03:00

17 lines
334 B
C++

#ifndef XNA_CONTENT_SERIALIZER_HPP
#define XNA_CONTENT_SERIALIZER_HPP
#include <string>
namespace xna {
struct ContentSerializerAttribute {
std::string ElementName;
std::string CollectionItemName;
bool FlatternContent{ false };
bool Optional{ false };
bool AllowNull{ true };
bool SharedResource{ false };
};
}
#endif