void main
(
float2 texcoord : TEXCOORD0,
float4 color : COLOR,
uniform sampler2D texture,
out float4 oColor : COLOR
)
{
oColor = color * tex2D(texture, texcoord);
}