summaryrefslogtreecommitdiff
path: root/src/simulation/GOLMenu.h
blob: 36bb5ddbe7bd12540b5b511360700254e5b9f159 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  GOLMenu.h
//  The Powder Toy
//
//  Created by Simon Robertshaw on 04/06/2012.
//  Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//

#ifndef The_Powder_Toy_GOLMenu_h
#define The_Powder_Toy_GOLMenu_h

struct gol_menu
{
	const char *name;
	pixel colour;
	int goltype;
	const char *description;
};

#endif