コード例 #1
0
 public void Read(IDataInput param1, ICommandLookup lookup)
 {
     param1.ReadShort();
     this.windowId = lookup.Lookup(param1) as WindowIDModule;
     this.windowId.Read(param1, lookup);
     this.blockWindow = param1.ReadBoolean();
 }
コード例 #2
0
 public void Read(IDataInput param1, ICommandLookup lookup)
 {
     this.maxFlashes   = param1.ReadInt();
     this.maxFlashes   = param1.Shift(this.maxFlashes, 26);
     this.windowAction = param1.ReadShort();
     this.windowID     = lookup.Lookup(param1) as WindowIDModule;
     this.windowID.Read(param1, lookup);
     this.showArrow = param1.ReadBoolean();
 }
コード例 #3
0
 public void Read(IDataInput param1, ICommandLookup lookup)
 {
     this.windowID = lookup.Lookup(param1) as WindowIDModule;
     this.windowID.Read(param1, lookup);
     this.maximized = param1.ReadBoolean();
     this.x         = param1.ReadInt();
     this.x         = param1.Shift(this.x, 19);
     this.y         = param1.ReadInt();
     this.y         = param1.Shift(this.y, 30);
 }
コード例 #4
0
 public UIWindowBlockModeCommand(WindowIDModule param1 = null, bool param2 = false)
 {
     if (param1 == null)
     {
         this.windowId = new WindowIDModule();
     }
     else
     {
         this.windowId = param1;
     }
     this.blockWindow = param2;
 }
コード例 #5
0
 public UIWindowSettingModule(WindowIDModule param1 = null, int param2 = 0, int param3 = 0, bool param4 = false)
 {
     if (param1 == null)
     {
         this.windowID = new WindowIDModule();
     }
     else
     {
         this.windowID = param1;
     }
     this.x         = param2;
     this.y         = param3;
     this.maximized = param4;
 }
コード例 #6
0
 public UIWindowActionModule(short param1 = 0, WindowIDModule param2 = null, int param3 = 0, bool param4 = false)
 {
     this.windowAction = param1;
     if (param2 == null)
     {
         this.windowID = new WindowIDModule();
     }
     else
     {
         this.windowID = param2;
     }
     this.maxFlashes = param3;
     this.showArrow  = param4;
 }