raylib/projects/VS2017.UWP/raylib.App.UWP/App.h
raysan5 e8c413b7cd Review UWP implementation
Basically, formating review and some variables naming to follow raylib conventions.
2019-04-27 22:47:03 +02:00

26 lines
352 B
C++

#pragma once
#include <string>
#include "pch.h"
// Define what header we use for BaseApp.h
#define PCH "pch.h"
// Enable hold hack
#define HOLDHACK
#include "BaseApp.h"
namespace raylibUWP
{
ref class App sealed : public BaseApp
{
public:
App();
// IFrameworkView Methods.
void Update() override;
};
}