mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-16 19:45:46 +01:00
10 lines
180 B
GLSL
10 lines
180 B
GLSL
// Copyright (c) 2025 Quinn
|
|
// Licensed under the MIT Licence. See LICENSE for details
|
|
|
|
#version 330 core
|
|
out vec4 colour;
|
|
|
|
void main() {
|
|
colour = vec4(1.0F, 0.5F, 0.0F, 1.0F);
|
|
}
|