Fixed #11 (Падение сервера при попытке получить свойства из Color на стороне C++)

This commit is contained in:
Kernell 2015-12-20 15:54:52 +03:00
parent d93090fde4
commit f9b74459e4

View File

@ -350,22 +350,10 @@ namespace MultiTheftAuto
internal string name;
public uint R = 255;
public uint G = 255;
public uint B = 255;
public uint A = 255;
public uint Alpha
{
get
{
return this.A;
}
set
{
this.A = value;
}
}
public uint R { get; set; }
public uint G { get; set; }
public uint B { get; set; }
public uint A { get; set; }
public string Name
{