예제 #1
0
 public M_PaintableLayer(int mouseID, BaseTypeLayer btl)
     :base("",mouseID)
     
 {
     this.layer = btl;
     this.lastAction = LastPaintableLayerAction.LayerCreated;
 }
예제 #2
0
 public M_PaintableLayer()
     : base("", -1)
 {
     this.lastAction = LastPaintableLayerAction.CurrentState;
 }
예제 #3
0
 public M_PaintableLayer(int mouseID)
     : base("", mouseID)
 {
     this.lastAction = LastPaintableLayerAction.Deletion;
 }