mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
17 lines
334 B
C++
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 |