1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/includes/xna/forward.hpp

23 lines
479 B
C++
Raw Permalink Normal View History

2024-11-09 20:56:59 -03:00
#ifndef XNA_FORWARD_HPP
#define XNA_FORWARD_HPP
#include <memory>
struct RationalNumber;
struct Point;
struct Vector2;
struct Vector3;
struct Vector4;
struct Matrix;
struct Quaternion;
using P_RationalNumber = std::shared_ptr<RationalNumber>;
using P_Pointer = std::shared_ptr<Point>;
using P_Vector2 = std::shared_ptr<Vector2>;
using P_Vector3 = std::shared_ptr<Vector3>;
using P_Vector4 = std::shared_ptr<Vector4>;
using P_Quaternion = std::shared_ptr<Quaternion>;
#endif