30 lines
658 B
C
30 lines
658 B
C
#ifndef GAME_H
|
|
#define GAME_H
|
|
/*
|
|
-----------------------------------------------------------------------------
|
|
File: Game
|
|
|
|
Desc: .
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
Chris Danford
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
enum Game
|
|
{
|
|
GAME_DANCE, // Dance Dance Revolution
|
|
GAME_PUMP, // Pump It Up
|
|
GAME_EZ2, // Ez2dancer
|
|
GAME_PARA, // ParaPAraParadise
|
|
GAME_DS3DDX, // Dance Station 3DDX.
|
|
GAME_BM, // Beatmania
|
|
GAME_MANIAX, // DanceManiax
|
|
GAME_TECHNO, // TechnoMotion
|
|
GAME_PNM, // pop n music
|
|
NUM_GAMES, // leave this at the end
|
|
GAME_INVALID,
|
|
};
|
|
|
|
#endif
|