true architecture
This commit is contained in:
44
enginecustom/applicationclass.cpp
Normal file
44
enginecustom/applicationclass.cpp
Normal file
@@ -0,0 +1,44 @@
|
||||
#include "applicationclass.h"
|
||||
|
||||
|
||||
ApplicationClass::ApplicationClass()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
ApplicationClass::ApplicationClass(const ApplicationClass& other)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
ApplicationClass::~ApplicationClass()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
bool ApplicationClass::Initialize(int screenWidth, int screenHeight, HWND hwnd)
|
||||
{
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
void ApplicationClass::Shutdown()
|
||||
{
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
bool ApplicationClass::Frame()
|
||||
{
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
bool ApplicationClass::Render()
|
||||
{
|
||||
|
||||
return true;
|
||||
}
|
||||
Reference in New Issue
Block a user