44 lines
444 B
C++
44 lines
444 B
C++
#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;
|
|
} |