Files
itgmania212121/stepmania/src/arch/LoadingWindow/LoadingWindow.h
T
Glenn Maynard acdb516ffd Reorganize arch a bit. Multiple architectures might want to share
a non-default implementation of a driver, and organizing them by
architecture doesn't handle that very well.
2002-11-18 21:37:58 +00:00

20 lines
367 B
C++

#ifndef LOADING_WINDOW_H
#define LOADING_WINDOW_H
/* Driver abstract class for opening and displaying the loading banner. */
class LoadingWindow {
public:
virtual ~LoadingWindow() { }
virtual void Paint() = 0;
virtual void SetText(CString str) { }
};
#endif
/*
* Copyright (c) 2002 by the person(s) listed below. All rights reserved.
*
* Glenn Maynard
*/