CSPspEmu.Core.Gpu.VertexInfoColor.VertexInfoColor C# (CSharp) Method

VertexInfoColor() public method

public VertexInfoColor ( CSharpPlatform.Vector4f Vector4f ) : System
Vector4f CSharpPlatform.Vector4f
return System
        public VertexInfoColor(Vector4f Vector4f)
        {
            this.R = Vector4f.X;
            this.G = Vector4f.Y;
            this.B = Vector4f.Z;
            this.A = Vector4f.W;
        }
VertexInfoColor