aboutsummaryrefslogtreecommitdiffstats
path: root/Gamestates/About.lua
blob: d65b24544bfe9af9245d057045f9826dc5a20388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--[[
	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


return About