added the readme

This commit is contained in:
2026-06-08 17:07:34 -04:00
commit 6655fd2886
1001 changed files with 253651 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef LIGHTING_CLASS
#define LIGHTING_CLASS
#include "t.h"
#include "tFunctions.h"
class Lighting {
public:
t dirlighting;
Lighting() {
dirlighting.RotateToQuaternion(glm::quat({ glm::radians(90.0f),0.0f,0.0f}));
dirlighting.TranslateTo({0.0f,0.0f,0.0f});
}
private:
};
#endif