ClassiCube/misc/xbox/ps_coloured.ps.cg
2023-09-05 19:39:39 +10:00

10 lines
113 B
Text

struct vOut {
float4 color : COLOR;
};
float4 main(
vOut input
) : COLOR
{
return input.color;
}