Various bug fixes. See changelog.
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
#pragma once
|
||||
/*
|
||||
-----------------------------------------------------------------------------
|
||||
Class: ScreenLoading
|
||||
|
||||
Desc: Shows while game loads.
|
||||
|
||||
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
||||
Chris Danford
|
||||
-----------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "Screen.h"
|
||||
#include "BitmapText.h"
|
||||
#include "Sprite.h"
|
||||
|
||||
class ScreenLoading : public Screen
|
||||
{
|
||||
public:
|
||||
ScreenLoading();
|
||||
|
||||
virtual void DrawPrimitives();
|
||||
|
||||
protected:
|
||||
BitmapText m_textMessage;
|
||||
Sprite m_sprLoading;
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user