21 lines
302 B
C++
21 lines
302 B
C++
#ifndef DIGGLER_CONTENT_OBJECT_DEF_HPP
|
|
#define DIGGLER_CONTENT_OBJECT_DEF_HPP
|
|
#include "../Platform.hpp"
|
|
|
|
namespace Diggler {
|
|
namespace Content {
|
|
|
|
class ObjectDef {
|
|
public:
|
|
enum class Variability : uint8 {
|
|
Static,
|
|
Dynamic,
|
|
Stream
|
|
};
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* DIGGLER_CONTENT_OBJECT_DEF_HPP */
|