better memory card assignment logic, add memory card icons, more memory card sounds

This commit is contained in:
Chris Danford
2003-12-19 05:01:42 +00:00
parent d0a6176e13
commit 93b8a46399
2 changed files with 77 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
#ifndef MEMORY_CARD_DISPLAY_H
#define MEMORY_CARD_DISPLAY_H
/*
-----------------------------------------------------------------------
File: MemoryCardDisplay.h
Desc: A graphic displayed on the screen during dance
Copyright (c) 2003 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------
*/
#include "GameConstantsAndTypes.h"
#include "PlayerNumber.h"
#include "Sprite.h"
#include "ActorFrame.h"
class MemoryCardDisplay : public ActorFrame
{
public:
MemoryCardDisplay();
void Load( PlayerNumber pn );
void Update( float fDelta );
protected:
PlayerNumber m_PlayerNumber;
MemoryCardState m_LastSeenState;
Sprite m_spr[NUM_MEMORY_CARD_STATES];
};
#endif