- First commit to gitea

This commit is contained in:
2026-02-12 10:51:02 +01:00
commit a16a5a4102
40 changed files with 10033 additions and 0 deletions

18
GUIViewport.h Normal file
View File

@@ -0,0 +1,18 @@
#pragma once
#include "common.h"
struct Viewport
{
enum RenderMode { Wire, Solid, Textured, UV };
Vector4 bounds {};
RenderMode renderMode {Solid};
Vector2 offset {0, 0};
Vector2 rotation {10, 20};
float zoom {10.0f};
bool light {true};
bool grid {true};
};
extern Viewport viewports[3];