Files
Nuake-custom/Nuake/src/Rendering/Transform.h
Antoine Pilote 0c6ed48bbd Major cleanup.
Moved to namespace
Cleanup includes
2021-07-11 18:56:44 -04:00

13 lines
147 B
C++

#pragma once
#include <src/Core/Maths.h>
namespace Nuake
{
struct Transform
{
Vector3 Translation;
Vector3 Rotation;
Vector3 Scale;
};
}