From 0344fe0d6d71e9773dfaaed9d94429f7db3f6c69 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Fri, 2 Jan 2015 08:49:06 +1100 Subject: [PATCH] Added a link to the github page to the main menu --- client/scenes/main_menu.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client/scenes/main_menu.cpp b/client/scenes/main_menu.cpp index 2be7c93..064b485 100644 --- a/client/scenes/main_menu.cpp +++ b/client/scenes/main_menu.cpp @@ -84,6 +84,12 @@ void MainMenu::Render(SDL_Surface* const screen) { startButton.DrawTo(screen); optionsButton.DrawTo(screen); quitButton.DrawTo(screen); + + //text + font.DrawStringTo("Thanks for playing!", screen, 50, screen->h - 50 - image.GetClipH() * 2); + font.DrawStringTo("You can get the latest version at: ", screen, 50, screen->h - 50 - image.GetClipH() * 1); + font.DrawStringTo("https://github.com/Ratstail91/Tortuga", screen, 50, screen->h - 50 - image.GetClipH() * 0); + //TODO: replace this with a website address } //-------------------------