working on player AI

This commit is contained in:
Chris Danford
2003-04-07 22:07:44 +00:00
parent 02d72dea3d
commit 14cbdd2ce7
9 changed files with 171 additions and 77 deletions
+25
View File
@@ -0,0 +1,25 @@
#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"
class PlayerAI
{
public:
static TapNoteScore PlayerAI::GetTapNoteScore( PlayerController pc, int iSumOfAttackLevels );
};
#endif