Files
cool-source-archive/materialsystem/stdshaders/unlitgeneric_notexture_ps11.fxc
2021-10-01 13:28:22 +07:00

9 lines
113 B
Plaintext

struct PS_INPUT
{
float4 vColor0 : COLOR0;
};
float4 main( PS_INPUT i ) : COLOR
{
return i.vColor0;
}