Newer
Older
PrismSoftware / ECTrainer2 / main.cpp
@Toshiya Nakaguchi Toshiya Nakaguchi on 16 Feb 2020 269 bytes ECTrainer2プロジェクト開発開始

#include "main.h"

#ifdef _DEBUG
int main()
#else
int APIENTRY _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow)
#endif
{
	ECTrainer ectrainer;
	if (!ectrainer.Init()) return 1;

#ifdef _DEBUG
	std::cin.get();
#endif
	return 0;
}