aboutsummaryrefslogtreecommitdiff
path: root/graphics.ads
blob: 78a4542a2444442291ef87ed75cca369e766e02d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
with SDL;

with Game;


package Graphics is

	type T_State is record
		running:  Boolean;
		window:   SDL.Window;
		renderer: SDL.Renderer;
		game:     T_Game;
	end record;

	procedure EventHandler(

end Graphics;