Files
itgmania212121/stepmania/src/arch/arch.cpp
T

24 lines
451 B
C++
Raw Normal View History

/*
* This file provides functions to create driver objects.
*/
#include "../stdafx.h"
#include "arch.h"
/* Load default drivers. */
#include "arch_default.h"
/* Override them with arch-specific drivers, as available. */
#if defined(WIN32)
#include "arch_Win32.h"
#endif
LoadingWindow *MakeLoadingWindow() { return new ARCH_LOADING_WINDOW; }
/*
* Copyright (c) 2002 by the person(s) listed below. All rights reserved.
*
* Glenn Maynard
*/