stubbed out shaders

This commit is contained in:
2026-07-07 07:46:27 -07:00
parent aa49a32ace
commit 1fce028eea
8 changed files with 47 additions and 172 deletions
+19
View File
@@ -0,0 +1,19 @@
#pragma once
#include <stdint.h>
#include "../datatypes.cpp"
#include "../helpers.cpp"
#include "../buffer.cpp"
namespace UwU {
// shader prototype
class Shader {
public:
Shader() {}
Color color() {
return Color(0xb00b69ff);
}
};
}