19 lines
		
	
	
		
			384 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			384 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "main.h"
 | 
						|
 | 
						|
#include "main_code.h"
 | 
						|
 | 
						|
int APIENTRY WinMain(HINSTANCE hCurrentInst, HINSTANCE hPreviousInst,
 | 
						|
	LPSTR lpszCmdLine, int nCmdShow)
 | 
						|
{
 | 
						|
	//Create application
 | 
						|
	TMyApplication Application;
 | 
						|
 | 
						|
	//Application.Width = 480;
 | 
						|
	//Application.Height = 320;
 | 
						|
 | 
						|
	Application.Width = 320;
 | 
						|
	Application.Height = 480;
 | 
						|
 | 
						|
	//Start application
 | 
						|
	return MainLoop(Application);
 | 
						|
} |