21 lines
323 B
C
21 lines
323 B
C
|
//
|
||
|
// 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
|