예제 #1
0
 public LoadScreenTypeData(LoadScreenTypeEnum Type, UInt32 X, UInt32 Y, UInt32 Width, UInt32 Height, Single Orientation, FontType Font1, Single Font1Red, Single Font1Green, Single Font1Blue, FontAlignment Font1Alignment, Byte[] Unknown1, FontType Font2, Single Font2Red, Single Font2Green, Single Font2Blue, Byte[] Unknown2, UInt32 Stats)
 {
     this.Type           = Type;
     this.X              = X;
     this.Y              = Y;
     this.Width          = Width;
     this.Height         = Height;
     this.Orientation    = Orientation;
     this.Font1          = Font1;
     this.Font1Red       = Font1Red;
     this.Font1Green     = Font1Green;
     this.Font1Blue      = Font1Blue;
     this.Font1Alignment = Font1Alignment;
     this.Unknown1       = Unknown1;
     this.Font2          = Font2;
     this.Font2Red       = Font2Red;
     this.Font2Green     = Font2Green;
     this.Font2Blue      = Font2Blue;
     this.Unknown2       = Unknown2;
     this.Stats          = Stats;
 }
예제 #2
0
 public LoadScreenTypeData(string Tag = null)
     : base(Tag)
 {
     Type           = new LoadScreenTypeEnum();
     X              = new UInt32();
     Y              = new UInt32();
     Width          = new UInt32();
     Height         = new UInt32();
     Orientation    = new Single();
     Font1          = new FontType();
     Font1Red       = new Single();
     Font1Green     = new Single();
     Font1Blue      = new Single();
     Font1Alignment = new FontAlignment();
     Unknown1       = new byte[20];
     Font2          = new FontType();
     Font2Red       = new Single();
     Font2Green     = new Single();
     Font2Blue      = new Single();
     Unknown2       = new byte[4];
     Stats          = new UInt32();
 }