Skip to content

Commit

Permalink
kinda fixed logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Perdue committed Mar 10, 2022
1 parent 46bb698 commit c70b4f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Game.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,15 @@ public override void Initialize()
guiImage = new Picture();
guiImage.Texture = logo;
guiImage.Anchor = UIAnchor.Top;
// guiImage.Offset = new Vector2(0, -70);
guiImage.Offset = new Vector2(0, -60);
guiImage.Scale = 0.4f;
UI.AddElement(guiImage);
startButton = new RectangleButton();
startButton.OnClick += startGame;
startButton.Anchor = UIAnchor.Center;
startButton.BorderColour = Color.Black;
startButton.BackgroundColour = Color.Green;
startButton.Offset = new Vector2(0,80);
Label label = new Label();
label.Text = "Start game";
label.FontSize = 32;
Expand Down
2 changes: 1 addition & 1 deletion tileEngine

0 comments on commit c70b4f0

Please sign in to comment.