From f9b74459e41ccd2bad28f8c4cf4d81dd77b4d93a Mon Sep 17 00:00:00 2001 From: Kernell Date: Sun, 20 Dec 2015 15:54:52 +0300 Subject: [PATCH] =?UTF-8?q?Fixed=20#11=20(=D0=9F=D0=B0=D0=B4=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20=D1=81=D0=B5=D1=80=D0=B2=D0=B5=D1=80=D0=B0=20?= =?UTF-8?q?=D0=BF=D1=80=D0=B8=20=D0=BF=D0=BE=D0=BF=D1=8B=D1=82=D0=BA=D0=B5?= =?UTF-8?q?=20=D0=BF=D0=BE=D0=BB=D1=83=D1=87=D0=B8=D1=82=D1=8C=20=D1=81?= =?UTF-8?q?=D0=B2=D0=BE=D0=B9=D1=81=D1=82=D0=B2=D0=B0=20=D0=B8=D0=B7=20Col?= =?UTF-8?q?or=20=D0=BD=D0=B0=20=D1=81=D1=82=D0=BE=D1=80=D0=BE=D0=BD=D0=B5?= =?UTF-8?q?=20C++)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MultiTheftAuto/Color.cs | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/MultiTheftAuto/Color.cs b/MultiTheftAuto/Color.cs index 685e4e3..081ed4d 100644 --- a/MultiTheftAuto/Color.cs +++ b/MultiTheftAuto/Color.cs @@ -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 {