Tesseract-Engine/src/Componenets/GameObject.h

11 lines
182 B
C
Raw Normal View History

2024-12-25 23:58:56 +00:00
// GameObject.h
#pragma once
#include "Transform.h"
#include "Mesh.h"
// A game object that has a transform and a mesh
struct GameObject
{
Transform transform;
Mesh mesh;
};