BsFwdDeclUtil.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #pragma once
  2. // Contains forward declares used as a convenience
  3. namespace BansheeEngine
  4. {
  5. /**
  6. * @brief Values that represent in which order are euler
  7. * angles applied when used in transformations
  8. */
  9. enum class EulerAngleOrder
  10. {
  11. XYZ,
  12. XZY,
  13. YXZ,
  14. YZX,
  15. ZXY,
  16. ZYX
  17. };
  18. class Angle;
  19. class AABox;
  20. class Degree;
  21. class Math;
  22. class Matrix3;
  23. class Matrix4;
  24. class Plane;
  25. class Quaternion;
  26. class Radian;
  27. class Ray;
  28. class Sphere;
  29. class Vector2;
  30. class Vector3;
  31. class Vector4;
  32. struct Vector2I;
  33. class RectI;
  34. class RectF;
  35. class Color;
  36. class DynLib;
  37. class DynLibManager;
  38. class DataStream;
  39. class MemoryDataStream;
  40. class FileDataStream;
  41. class MeshData;
  42. class FileSystem;
  43. class Timer;
  44. class Task;
  45. class GpuResourceData;
  46. class PixelData;
  47. class HString;
  48. class StringTable;
  49. struct LocalizedStringData;
  50. class Path;
  51. // Reflection
  52. class IReflectable;
  53. class RTTITypeBase;
  54. // Serialization
  55. class ISerializable;
  56. class SerializableType;
  57. typedef std::shared_ptr<DataStream> DataStreamPtr;
  58. typedef std::shared_ptr<MemoryDataStream> MemoryDataStreamPtr;
  59. typedef std::shared_ptr<FileDataStream> FileDataStreamPtr;
  60. typedef std::shared_ptr<MeshData> MeshDataPtr;
  61. typedef std::shared_ptr<PixelData> PixelDataPtr;
  62. typedef std::shared_ptr<GpuResourceData> GpuResourceDataPtr;
  63. typedef std::shared_ptr<DataStream> DataStreamPtr;
  64. typedef std::shared_ptr<MemoryDataStream> MemoryDataStreamPtr;
  65. typedef std::shared_ptr<Task> TaskPtr;
  66. typedef List<DataStreamPtr> DataStreamList;
  67. typedef std::shared_ptr<DataStreamList> DataStreamListPtr;
  68. enum TypeID_Utility
  69. {
  70. TID_Abstract = 50, // Special type ID used for Abstract classes. Only type ID that may be used by more than one class.
  71. TID_WString = 51,
  72. TID_Path = 52,
  73. TID_Vector = 53,
  74. TID_Map = 54,
  75. TID_UnorderedMap = 55,
  76. TID_Pair = 56
  77. };
  78. }