ClassiCube/misc/xbox/ps_coloured.cg

11 lines
113 B
Plaintext

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