Files
itgmania212121/stepmania/src/PlayerAI.h
T

28 lines
522 B
C++
Raw Normal View History

2003-04-07 22:07:44 +00:00
#ifndef PlayerAI_H
#define PlayerAI_H
/*
-----------------------------------------------------------------------------
Class: PlayerAI
Desc: .
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "GameConstantsAndTypes.h"
2004-01-12 03:47:55 +00:00
const int NUM_SKILL_LEVELS = 6; // 0-5
2003-04-07 22:07:44 +00:00
class PlayerAI
{
public:
static void InitFromDisk();
2004-01-12 03:47:55 +00:00
static TapNoteScore GetTapNoteScore( PlayerNumber pn );
2003-04-07 22:07:44 +00:00
};
#endif