public STColor16[] ReadColor16sRGBA(int count) { STColor16[] colors = new STColor16[count]; for (int i = 0; i < count; i++) colors[i] = STColor16.FromShorts(ReadUInt16s(4)); return colors; }
public void Write(STColor16 color) { Write(color.ToUShorts()); }
public STColor16 ReadColor16RGBA() { return(STColor16.FromShorts(ReadUInt16s(4))); }
public void Bind(ref STColor16 Color) { }