Example #1
0
 public ItemStatus(int id)
 {
     View = new WipeStatusView();
     ContextId = id;
     ObjectIndex = -1;
     Speed = new WipeSpeed();
 }
Example #2
0
 public ItemStatus()
 {
     View = new WipeStatusView();
     ObjectIndex = -1;
     Speed = new WipeSpeed();
 }
Example #3
0
 public WipeTool()
 {
     InitializeComponent();
     views = new List<ItemStatus>();
     usedViews = new List<int>();
     totalSpeed = new WipeSpeed();
     actionExecuter = new ActionExecutor();
     StatusViewHost.PanelDistance = 3;
 }