예제 #1
0
 public PanelImage(Panel parent, ImageTinted img = null)
     : base(parent)
 {
     Size      = img.Size;
     Image     = img;
     OnResize += () => { if (Image != null) Image.Size = Size; };
 }
예제 #2
0
파일: Map.cs 프로젝트: zdawson/Marooned
 public Button(Map map, ImageTinted img)
     : base(map, img)
 {
     ColourHovered.ValueInactive = Color.White;
     ColourHovered.ValueActive   = Color.Gray;
     ColourDepressed             = Color.DimGray;
     OnResize += () => Content.Size = Size;
 }
예제 #3
0
 public GraphicEntity(Tile t, ImageTinted img, bool solid = false)
     : base(t, solid)
 {
     Image = img;
 }
예제 #4
0
파일: Weapons.cs 프로젝트: zdawson/Marooned
 public Weapon(Tile t, ImageTinted img)
     : base(t, img)
 {
 }
예제 #5
0
파일: Item.cs 프로젝트: zdawson/Marooned
 public Item(Tile t, ImageTinted img, bool collidable = false)
     : base(t, img, collidable)
 {
     OnDrop();
 }