mirror of
https://github.com/ChronosX88/mta-mono.git
synced 2024-11-21 17:52:23 +00:00
Fixed #11 (Падение сервера при попытке получить свойства из Color на стороне C++)
This commit is contained in:
parent
d93090fde4
commit
f9b74459e4
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user