mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-17 06:15:47 +01:00
7 lines
92 B
GLSL
7 lines
92 B
GLSL
#version 330 core
|
|
out vec4 colour;
|
|
|
|
void main() {
|
|
colour = vec4(1.0F, 0.5F, 0.0F, 1.0F);
|
|
}
|