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"
|
|
|
|
|
|
2003-04-21 02:41:10 +00:00
|
|
|
const int NUM_SKILL_LEVELS = 11; // 0-10
|
2003-04-07 22:07:44 +00:00
|
|
|
|
|
|
|
|
class PlayerAI
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
2003-04-21 02:41:10 +00:00
|
|
|
static void InitFromDisk();
|
2003-06-30 05:17:40 +00:00
|
|
|
static TapNoteScore GetTapNoteScore( int iCpuSkill, int iSumOfAttackLevels );
|
2003-04-07 22:07:44 +00:00
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|