コード例 #1
0
ファイル: PanelImage.cs プロジェクト: zdawson/Marooned
 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
ファイル: GraphicEntity.cs プロジェクト: zdawson/Marooned
 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();
 }