- 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

19
Editor.h Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
namespace Editor
{
enum class Mode { Face, Cube, Anim, Paint };
enum class State { None, Grab, Scale, Rotate, Pivot };
extern Mode mode;
extern State state;
extern char textureFilename[400];
extern unsigned texture;
extern char forcedAxis;
extern float t;
extern unsigned char bitmap[32*32*4];
void SetMode(const Mode value);
void SetState(const State value);
}