123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace bbiwarg.DataSource
- {
- class Color4
- {
- private byte a, r, g, b;
- public Color4(byte a, byte r, byte g, byte b)
- {
- this.a = a;
- this.r = r;
- this.g = g;
- this.b = b;
- }
- public byte getA()
- {
- return a;
- }
- public byte getR()
- {
- return r;
- }
- public byte getG()
- {
- return g;
- }
- public byte getB()
- {
- return b;
- }
- }
- }
|