2003-01-11 08:55:21 +00:00
|
|
|
#ifndef SCREENLOGO_H
|
|
|
|
|
#define SCREENLOGO_H
|
2003-01-08 23:43:54 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
Class: ScreenLogo
|
|
|
|
|
|
2003-01-26 20:49:05 +00:00
|
|
|
Desc:
|
2003-01-08 23:43:54 +00:00
|
|
|
|
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
|
|
|
Chris Danford
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "ScreenAttract.h"
|
2003-07-12 20:36:26 +00:00
|
|
|
#include "Sprite.h"
|
2003-01-08 23:43:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class ScreenLogo : public ScreenAttract
|
|
|
|
|
{
|
|
|
|
|
public:
|
2003-09-27 22:30:51 +00:00
|
|
|
ScreenLogo( CString sName );
|
2003-01-11 08:55:21 +00:00
|
|
|
|
2003-01-19 04:44:22 +00:00
|
|
|
protected:
|
2003-01-11 08:55:21 +00:00
|
|
|
Sprite m_sprLogo;
|
2003-01-08 23:43:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-02-16 04:56:36 +00:00
|
|
|
#endif
|