mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-09 07:18:34 -04:00
11 lines
113 B
Plaintext
11 lines
113 B
Plaintext
struct vOut {
|
|
float4 color : COLOR;
|
|
};
|
|
|
|
float4 main(
|
|
vOut input
|
|
) : COLOR
|
|
{
|
|
return input.color;
|
|
}
|