added basic structures

This commit is contained in:
2026-01-17 13:48:25 +01:00
parent 0e4689cf35
commit 53c7d564d7
23 changed files with 2247 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#pragma once
#include "Vector2.hpp"
#include "Vector3.hpp"
#include <vector>
namespace TSE
{
class IRenderable
{
public:
virtual const Vector3* GetVertices() const = 0;
virtual const Vector2* GetUVs() const = 0;
virtual const std::vector<ushort> GetIndices() const = 0;
virtual size_t GetVertexCount() const = 0;
virtual ~IRenderable() = default;
};
} // namespace TSE