summaryrefslogtreecommitdiffhomepage
path: root/projects
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-04-13 16:40:04 +0200
committerraysan5 <[email protected]>2020-04-13 16:40:04 +0200
commit8d51ad567fb2968d4df582bbe71ebd157dde1d85 (patch)
treecb0202d07b7c306b33491370fe1614b7b26cd8cd /projects
parent32387317bffcd006a0cafa91b8e01e1b0fb65be5 (diff)
downloadraylib-8d51ad567fb2968d4df582bbe71ebd157dde1d85.tar.gz
raylib-8d51ad567fb2968d4df582bbe71ebd157dde1d85.zip
Review UWP project -WIP-
Diffstat (limited to 'projects')
-rw-r--r--projects/VS2017.UWP/raylib.App.UWP/App.cpp2
-rw-r--r--projects/VS2017.UWP/raylib.App.UWP/App.h8
-rw-r--r--projects/VS2017.UWP/raylib.App.UWP/BaseApp.h2
-rw-r--r--projects/VS2017.UWP/raylib.App.UWP/raylib.App.UWP.vcxproj.filters40
4 files changed, 46 insertions, 6 deletions
diff --git a/projects/VS2017.UWP/raylib.App.UWP/App.cpp b/projects/VS2017.UWP/raylib.App.UWP/App.cpp
index dd1156a4..ad3fdb28 100644
--- a/projects/VS2017.UWP/raylib.App.UWP/App.cpp
+++ b/projects/VS2017.UWP/raylib.App.UWP/App.cpp
@@ -5,7 +5,7 @@
using namespace raylibUWP;
-// The main function creates an IFrameworkViewSource for our app, and runs the app.
+// The main function creates an IFrameworkViewSource for our app, and runs the app
[Platform::MTAThread]
int main(Platform::Array<Platform::String^>^)
{
diff --git a/projects/VS2017.UWP/raylib.App.UWP/App.h b/projects/VS2017.UWP/raylib.App.UWP/App.h
index fa33237d..7b96d16e 100644
--- a/projects/VS2017.UWP/raylib.App.UWP/App.h
+++ b/projects/VS2017.UWP/raylib.App.UWP/App.h
@@ -16,10 +16,10 @@ namespace raylibUWP
{
ref class App sealed : public BaseApp
{
- public:
- App();
+ public:
- // IFrameworkView Methods.
- void Update() override;
+ App();
+
+ void Update() override;
};
}
diff --git a/projects/VS2017.UWP/raylib.App.UWP/BaseApp.h b/projects/VS2017.UWP/raylib.App.UWP/BaseApp.h
index 7f59c3de..87b952e5 100644
--- a/projects/VS2017.UWP/raylib.App.UWP/BaseApp.h
+++ b/projects/VS2017.UWP/raylib.App.UWP/BaseApp.h
@@ -119,7 +119,7 @@ public:
handle = (EGLNativeWindowType)window;
- InitWindow(width, height, NULL);
+ InitWindow(width, height, "raylib game example");
}
virtual void Load(Platform::String^ entryPoint) {}
diff --git a/projects/VS2017.UWP/raylib.App.UWP/raylib.App.UWP.vcxproj.filters b/projects/VS2017.UWP/raylib.App.UWP/raylib.App.UWP.vcxproj.filters
new file mode 100644
index 00000000..1e0fe362
--- /dev/null
+++ b/projects/VS2017.UWP/raylib.App.UWP/raylib.App.UWP.vcxproj.filters
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <ClCompile Include="App.cpp" />
+ <ClCompile Include="pch.cpp" />
+ </ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="App.h" />
+ <ClInclude Include="BaseApp.h" />
+ <ClInclude Include="pch.h" />
+ </ItemGroup>
+ <ItemGroup>
+ <Image Include="Assets\Logo.scale-100.png">
+ <Filter>Logo</Filter>
+ </Image>
+ <Image Include="Assets\SmallLogo.scale-100.png">
+ <Filter>Logo</Filter>
+ </Image>
+ <Image Include="Assets\StoreLogo.scale-100.png">
+ <Filter>Logo</Filter>
+ </Image>
+ <Image Include="Assets\WideLogo.scale-100.png">
+ <Filter>Logo</Filter>
+ </Image>
+ <Image Include="Assets\SplashScreen.scale-100.png">
+ <Filter>Logo</Filter>
+ </Image>
+ </ItemGroup>
+ <ItemGroup>
+ <AppxManifest Include="Package.appxmanifest" />
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="packages.config" />
+ </ItemGroup>
+ <ItemGroup>
+ <Filter Include="Logo">
+ <UniqueIdentifier>{cdf72d55-f249-4ad6-9a91-f8a084e64933}</UniqueIdentifier>
+ </Filter>
+ </ItemGroup>
+</Project> \ No newline at end of file