13 lines
147 B
C++
13 lines
147 B
C++
#pragma once
|
|
#include <src/Core/Maths.h>
|
|
|
|
namespace Nuake
|
|
{
|
|
struct Transform
|
|
{
|
|
Vector3 Translation;
|
|
Vector3 Rotation;
|
|
Vector3 Scale;
|
|
};
|
|
}
|