Make* -> Driver::Create. Having these floating in arch.h isn't

useful; if you create the class, you need the class definition to
free it, and anyone creating a class is probably going to use it,
too.
This commit is contained in:
Glenn Maynard
2006-12-17 07:41:21 +00:00
parent 50ca6633cb
commit 17c32b90c2
14 changed files with 19 additions and 14 deletions
@@ -7,6 +7,8 @@ struct RageSurface;
class LoadingWindow
{
public:
static LoadingWindow *Create();
virtual RString Init() { return RString(); }
virtual ~LoadingWindow() { }