22 lines
480 B
C
22 lines
480 B
C
#pragma once
|
|
/*
|
|
-----------------------------------------------------------------------------
|
|
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
|
|
NUM_GAMES, // leave this at the end
|
|
GAME_INVALID,
|
|
};
|