--[[ Gamestates/About.lua About page by piernov ]]-- local Gui = require "Quickie" local Utils = require "Utils" local About = {} function About:enter() Previous = "Gamestates/Menu" end function About:update(dt) Gui.group{grow = "down", pos = {Utils.percentCoordinates(10, 10)}, function() Gui.Label{text = "BlueMind", size = {Utils.percentCoordinates(10, 10)}} Gui.Label{text = "A Mastermind(tm)-like game", size = {Utils.percentCoordinates(10, 10)}} Gui.Label{text = "by piernov and Roildan", size = {Utils.percentCoordinates(10, 10)}} Gui.Label{text = "Music by Choucka", size = {Utils.percentCoordinates(10, 10)}} end} end function About:draw() Gui.core.draw() end function About:leave() Menu.Music:stop() end return About