summaryrefslogtreecommitdiffhomepage
path: root/projects/VS2017.UWP/raylib.App.UWP/App.h
blob: 26c1d400b6775307b6199274efcd9986e2319cbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#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;
    };
}