| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #pragma once
- // Contains forward declares used as a convenience
- namespace CamelotFramework
- {
- /**
- * @brief Values that represent in which order are euler
- * angles applied when used in transformations
- */
- enum class EulerAngleOrder
- {
- XYZ,
- XZY,
- YXZ,
- YZX,
- ZXY,
- ZYX
- };
- class Angle;
- class AABox;
- class Degree;
- class Math;
- class Matrix3;
- class Matrix4;
- class Plane;
- class Quaternion;
- class Radian;
- class Ray;
- class Sphere;
- class Vector2;
- class Vector3;
- class Vector4;
- struct Vector2I;
- class RectI;
- class RectF;
- class Color;
- class DynLib;
- class DynLibManager;
- class DataStream;
- class MemoryDataStream;
- class FileDataStream;
- class MeshData;
- class FileSystem;
- class Timer;
- class GpuResourceData;
- class PixelData;
- class HString;
- class StringTable;
- struct LocalizedStringData;
- // Reflection
- class IReflectable;
- class RTTITypeBase;
- // Serialization
- class ISerializable;
- class SerializableType;
- typedef std::shared_ptr<DataStream> DataStreamPtr;
- typedef std::shared_ptr<MemoryDataStream> MemoryDataStreamPtr;
- typedef std::shared_ptr<FileDataStream> FileDataStreamPtr;
- typedef std::shared_ptr<MeshData> MeshDataPtr;
- typedef std::shared_ptr<PixelData> PixelDataPtr;
- typedef std::shared_ptr<GpuResourceData> GpuResourceDataPtr;
- enum TypeID_Utility
- {
- TID_Abstract = 50, // Special type ID used for Abstract classes. Only type ID that may be used by more than one class.
- TID_WString = 51,
- TID_WPath = 52
- };
- }
|