19 lines
271 B
C++
19 lines
271 B
C++
|
|
#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);
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|