commit 4bbfcec9c93547a8a43ef4106262cf93fa972df8 Author: Elias Stepanik Date: Sun Jul 17 19:21:58 2022 +0200 Initial commit diff --git a/.idea/.idea.RaylibTest/.idea/.gitignore b/.idea/.idea.RaylibTest/.idea/.gitignore new file mode 100644 index 0000000..bbd48d6 --- /dev/null +++ b/.idea/.idea.RaylibTest/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/projectSettingsUpdater.xml +/modules.xml +/contentModel.xml +/.idea.RaylibTest.iml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.RaylibTest/.idea/encodings.xml b/.idea/.idea.RaylibTest/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.RaylibTest/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.RaylibTest/.idea/indexLayout.xml b/.idea/.idea.RaylibTest/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.RaylibTest/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/RaylibTest.sln b/RaylibTest.sln new file mode 100644 index 0000000..fdddc31 --- /dev/null +++ b/RaylibTest.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RaylibTest", "RaylibTest\RaylibTest.csproj", "{B6C484C6-31E8-450C-8B03-255A02FB781B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B6C484C6-31E8-450C-8B03-255A02FB781B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B6C484C6-31E8-450C-8B03-255A02FB781B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B6C484C6-31E8-450C-8B03-255A02FB781B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B6C484C6-31E8-450C-8B03-255A02FB781B}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/RaylibTest/Collider.cs b/RaylibTest/Collider.cs new file mode 100644 index 0000000..267ed33 --- /dev/null +++ b/RaylibTest/Collider.cs @@ -0,0 +1,7 @@ +namespace RaylibTest; + +public class Collider : Component +{ + + +} \ No newline at end of file diff --git a/RaylibTest/Component.cs b/RaylibTest/Component.cs new file mode 100644 index 0000000..540ec7c --- /dev/null +++ b/RaylibTest/Component.cs @@ -0,0 +1,6 @@ +namespace RaylibTest; + +public class Component +{ + +} \ No newline at end of file diff --git a/RaylibTest/Download50608.png b/RaylibTest/Download50608.png new file mode 100644 index 0000000..a65d922 Binary files /dev/null and b/RaylibTest/Download50608.png differ diff --git a/RaylibTest/Game.cs b/RaylibTest/Game.cs new file mode 100644 index 0000000..03ad966 --- /dev/null +++ b/RaylibTest/Game.cs @@ -0,0 +1,36 @@ +using System.Numerics; +using Raylib_cs; + +namespace RaylibTest; + +public class Game : Window +{ + public Game(int width, int height, string title, int targetFps) : base(width, height, title, targetFps) + { + } + + Vector2 ballPosition = new Vector2(100, 100); + + Sphere sphere = new Sphere(new Vector2(0,0), 20, Color.RED); + + public override void Start() + { + ballPosition = new Vector2((float) Width / 2, (float) Height / 2); + RegisterGameObject(sphere); + base.Start(); + } + + public override void Update() + { + base.Update(); + if (Raylib.IsKeyDown(KeyboardKey.KEY_RIGHT)) ballPosition.X += 2.0f; + if (Raylib.IsKeyDown(KeyboardKey.KEY_LEFT)) ballPosition.X -= 2.0f; + if (Raylib.IsKeyDown(KeyboardKey.KEY_UP)) ballPosition.Y -= 2.0f; + if (Raylib.IsKeyDown(KeyboardKey.KEY_DOWN)) ballPosition.Y += 2.0f; + + Raylib.DrawText("move the ball with arrow keys", 10, 10, 20, Color.DARKGRAY); + sphere.Position = ballPosition; + Console.Clear(); + Console.WriteLine(@"BallPisiton: {0}",sphere.Position); + } +} \ No newline at end of file diff --git a/RaylibTest/GameObject.cs b/RaylibTest/GameObject.cs new file mode 100644 index 0000000..c4bb94e --- /dev/null +++ b/RaylibTest/GameObject.cs @@ -0,0 +1,16 @@ +using System.Numerics; + +namespace RaylibTest; + +public class GameObject +{ + public Vector2 Position; + public GameObject(Vector2 position) + { + Position = position; + } + public virtual void Draw() + { + + } +} \ No newline at end of file diff --git a/RaylibTest/Program.cs b/RaylibTest/Program.cs new file mode 100644 index 0000000..3b6ddc5 --- /dev/null +++ b/RaylibTest/Program.cs @@ -0,0 +1,13 @@ +using Raylib_cs; +using RaylibTest; + +Game game = new Game(1024, 768, "Raylib Game Template", 60); +game.Start(); + +while (!Raylib.WindowShouldClose()) +{ + Raylib.BeginDrawing(); + Raylib.ClearBackground(Color.WHITE); + game.Update(); + Raylib.EndDrawing(); +} \ No newline at end of file diff --git a/RaylibTest/RaylibTest.csproj b/RaylibTest/RaylibTest.csproj new file mode 100644 index 0000000..08bc25e --- /dev/null +++ b/RaylibTest/RaylibTest.csproj @@ -0,0 +1,18 @@ + + + + Exe + net6.0 + enable + enable + + + + + + + + + + + diff --git a/RaylibTest/Sphere.cs b/RaylibTest/Sphere.cs new file mode 100644 index 0000000..5673d11 --- /dev/null +++ b/RaylibTest/Sphere.cs @@ -0,0 +1,22 @@ +using System.Numerics; +using Raylib_cs; + +namespace RaylibTest; + +public class Sphere : GameObject +{ + public float Radius { get; set; } + public Color Color { get; set; } + + public Sphere(Vector2 position, float radius, Color color) : base(position) + { + Radius = radius; + Color = color; + } + + public override void Draw() + { + base.Draw(); + Raylib.DrawCircleV(Position,Radius, Color); + } +} \ No newline at end of file diff --git a/RaylibTest/Sprites/Download50608.png b/RaylibTest/Sprites/Download50608.png new file mode 100644 index 0000000..8304443 Binary files /dev/null and b/RaylibTest/Sprites/Download50608.png differ diff --git a/RaylibTest/Window.cs b/RaylibTest/Window.cs new file mode 100644 index 0000000..83d666e --- /dev/null +++ b/RaylibTest/Window.cs @@ -0,0 +1,55 @@ +using System.Numerics; +using Raylib_cs; + +namespace RaylibTest; + +public class Window +{ + protected int Width { get; set; } + protected int Height { get; set; } + protected string Title { get; set; } + protected int TargetFps { get; set; } + + private List gameObjects = new List(); + + public Window(int width, int height, string title, int targetFps) + { + Width = width; + Height = height; + Title = title; + TargetFps = targetFps; + } + + public virtual void Start() + { + Raylib.InitWindow(Width, Height, Title); + Raylib.SetTargetFPS(TargetFps); + Raylib.SetWindowMinSize(Width, Height); + while (!Raylib.WindowShouldClose()) + { + Raylib.BeginDrawing(); + Raylib.ClearBackground(Color.WHITE); + Update(); + Raylib.EndDrawing(); + } + } + + public virtual void Update() + { + foreach (var gameObject in gameObjects) + { + gameObject.Draw(); + } + } + + public virtual void RegisterGameObject(GameObject gameObject) + { + gameObjects.Add(gameObject); + } + + public virtual void Stop() + { + Raylib.CloseWindow(); + } + +} \ No newline at end of file diff --git a/RaylibTest/bin/Debug/net6.0/Raylib-cs.dll b/RaylibTest/bin/Debug/net6.0/Raylib-cs.dll new file mode 100755 index 0000000..be069ac Binary files /dev/null and b/RaylibTest/bin/Debug/net6.0/Raylib-cs.dll differ diff --git a/RaylibTest/bin/Debug/net6.0/RaylibTest b/RaylibTest/bin/Debug/net6.0/RaylibTest new file mode 100755 index 0000000..57d5fb3 Binary files /dev/null and b/RaylibTest/bin/Debug/net6.0/RaylibTest differ diff --git a/RaylibTest/bin/Debug/net6.0/RaylibTest.deps.json b/RaylibTest/bin/Debug/net6.0/RaylibTest.deps.json new file mode 100644 index 0000000..d56fa03 --- /dev/null +++ b/RaylibTest/bin/Debug/net6.0/RaylibTest.deps.json @@ -0,0 +1,74 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "RaylibTest/1.0.0": { + "dependencies": { + "Raylib-cs": "4.0.0.1" + }, + "runtime": { + "RaylibTest.dll": {} + } + }, + "Raylib-cs/4.0.0.1": { + "dependencies": { + "System.Numerics.Vectors": "4.5.0" + }, + "runtime": { + "lib/net6.0/Raylib-cs.dll": { + "assemblyVersion": "0.0.0.0", + "fileVersion": "0.0.0.0" + } + }, + "runtimeTargets": { + "runtimes/linux-x64/native/libraylib.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libraylib.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/raylib.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/raylib.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "System.Numerics.Vectors/4.5.0": {} + } + }, + "libraries": { + "RaylibTest/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Raylib-cs/4.0.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P8VqY5UsEawOoWElEcLNmLu08zOpvkk5C7eI0OKR8fDL7v6bPkFchC8iUJI47BgPq0lYsQbnMeEOe2bz/HZ5bA==", + "path": "raylib-cs/4.0.0.1", + "hashPath": "raylib-cs.4.0.0.1.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/RaylibTest/bin/Debug/net6.0/RaylibTest.dll b/RaylibTest/bin/Debug/net6.0/RaylibTest.dll new file mode 100644 index 0000000..a3b7635 Binary files /dev/null and b/RaylibTest/bin/Debug/net6.0/RaylibTest.dll differ diff --git a/RaylibTest/bin/Debug/net6.0/RaylibTest.pdb b/RaylibTest/bin/Debug/net6.0/RaylibTest.pdb new file mode 100644 index 0000000..238573a Binary files /dev/null and b/RaylibTest/bin/Debug/net6.0/RaylibTest.pdb differ diff --git a/RaylibTest/bin/Debug/net6.0/RaylibTest.runtimeconfig.json b/RaylibTest/bin/Debug/net6.0/RaylibTest.runtimeconfig.json new file mode 100644 index 0000000..4986d16 --- /dev/null +++ b/RaylibTest/bin/Debug/net6.0/RaylibTest.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + } + } +} \ No newline at end of file diff --git a/RaylibTest/bin/Debug/net6.0/runtimes/linux-x64/native/libraylib.so b/RaylibTest/bin/Debug/net6.0/runtimes/linux-x64/native/libraylib.so new file mode 100755 index 0000000..134f573 Binary files /dev/null and b/RaylibTest/bin/Debug/net6.0/runtimes/linux-x64/native/libraylib.so differ diff --git a/RaylibTest/bin/Debug/net6.0/runtimes/osx-x64/native/libraylib.dylib b/RaylibTest/bin/Debug/net6.0/runtimes/osx-x64/native/libraylib.dylib new file mode 100755 index 0000000..42da768 Binary files /dev/null and b/RaylibTest/bin/Debug/net6.0/runtimes/osx-x64/native/libraylib.dylib differ diff --git a/RaylibTest/bin/Debug/net6.0/runtimes/win-x64/native/raylib.dll b/RaylibTest/bin/Debug/net6.0/runtimes/win-x64/native/raylib.dll new file mode 100755 index 0000000..398f83e Binary files /dev/null and b/RaylibTest/bin/Debug/net6.0/runtimes/win-x64/native/raylib.dll differ diff --git a/RaylibTest/bin/Debug/net6.0/runtimes/win-x86/native/raylib.dll b/RaylibTest/bin/Debug/net6.0/runtimes/win-x86/native/raylib.dll new file mode 100755 index 0000000..985c404 Binary files /dev/null and b/RaylibTest/bin/Debug/net6.0/runtimes/win-x86/native/raylib.dll differ diff --git a/RaylibTest/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/RaylibTest/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/RaylibTest/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/RaylibTest/obj/Debug/net6.0/RaylibTest.AssemblyInfo.cs b/RaylibTest/obj/Debug/net6.0/RaylibTest.AssemblyInfo.cs new file mode 100644 index 0000000..be58d12 --- /dev/null +++ b/RaylibTest/obj/Debug/net6.0/RaylibTest.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("RaylibTest")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("RaylibTest")] +[assembly: System.Reflection.AssemblyTitleAttribute("RaylibTest")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/RaylibTest/obj/Debug/net6.0/RaylibTest.AssemblyInfoInputs.cache b/RaylibTest/obj/Debug/net6.0/RaylibTest.AssemblyInfoInputs.cache new file mode 100644 index 0000000..67fce1e --- /dev/null +++ b/RaylibTest/obj/Debug/net6.0/RaylibTest.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +847aa2382d06128c731087adfa76b7f0dc4916a6 diff --git a/RaylibTest/obj/Debug/net6.0/RaylibTest.GeneratedMSBuildEditorConfig.editorconfig b/RaylibTest/obj/Debug/net6.0/RaylibTest.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5d12baf --- /dev/null +++ b/RaylibTest/obj/Debug/net6.0/RaylibTest.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = RaylibTest +build_property.ProjectDir = /Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/ diff --git a/RaylibTest/obj/Debug/net6.0/RaylibTest.GlobalUsings.g.cs b/RaylibTest/obj/Debug/net6.0/RaylibTest.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/RaylibTest/obj/Debug/net6.0/RaylibTest.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/RaylibTest/obj/Debug/net6.0/RaylibTest.assets.cache b/RaylibTest/obj/Debug/net6.0/RaylibTest.assets.cache new file mode 100644 index 0000000..d2387cf Binary files /dev/null and b/RaylibTest/obj/Debug/net6.0/RaylibTest.assets.cache differ diff --git a/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.AssemblyReference.cache b/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f61c74e Binary files /dev/null and b/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.AssemblyReference.cache differ diff --git a/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.CopyComplete b/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.CoreCompileInputs.cache b/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..7fa5732 --- /dev/null +++ b/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a2d1cedbc5ed7528cb3f4a0e5feb8a12993c50f2 diff --git a/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.FileListAbsolute.txt b/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c329f59 --- /dev/null +++ b/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.FileListAbsolute.txt @@ -0,0 +1,21 @@ +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/RaylibTest +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/RaylibTest.deps.json +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/RaylibTest.runtimeconfig.json +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/RaylibTest.dll +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/RaylibTest.pdb +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/Raylib-cs.dll +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/runtimes/linux-x64/native/libraylib.so +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/runtimes/osx-x64/native/libraylib.dylib +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/runtimes/win-x64/native/raylib.dll +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/bin/Debug/net6.0/runtimes/win-x86/native/raylib.dll +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.AssemblyReference.cache +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.GeneratedMSBuildEditorConfig.editorconfig +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.AssemblyInfoInputs.cache +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.AssemblyInfo.cs +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.CoreCompileInputs.cache +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.csproj.CopyComplete +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.dll +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/refint/RaylibTest.dll +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.pdb +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/RaylibTest.genruntimeconfig.cache +/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/Debug/net6.0/ref/RaylibTest.dll diff --git a/RaylibTest/obj/Debug/net6.0/RaylibTest.dll b/RaylibTest/obj/Debug/net6.0/RaylibTest.dll new file mode 100644 index 0000000..a3b7635 Binary files /dev/null and b/RaylibTest/obj/Debug/net6.0/RaylibTest.dll differ diff --git a/RaylibTest/obj/Debug/net6.0/RaylibTest.genruntimeconfig.cache b/RaylibTest/obj/Debug/net6.0/RaylibTest.genruntimeconfig.cache new file mode 100644 index 0000000..c3b8f82 --- /dev/null +++ b/RaylibTest/obj/Debug/net6.0/RaylibTest.genruntimeconfig.cache @@ -0,0 +1 @@ +b057f23e9e7f8c6aa9c2930c89c9bdcf26595cf6 diff --git a/RaylibTest/obj/Debug/net6.0/RaylibTest.pdb b/RaylibTest/obj/Debug/net6.0/RaylibTest.pdb new file mode 100644 index 0000000..238573a Binary files /dev/null and b/RaylibTest/obj/Debug/net6.0/RaylibTest.pdb differ diff --git a/RaylibTest/obj/Debug/net6.0/apphost b/RaylibTest/obj/Debug/net6.0/apphost new file mode 100755 index 0000000..57d5fb3 Binary files /dev/null and b/RaylibTest/obj/Debug/net6.0/apphost differ diff --git a/RaylibTest/obj/Debug/net6.0/ref/RaylibTest.dll b/RaylibTest/obj/Debug/net6.0/ref/RaylibTest.dll new file mode 100644 index 0000000..40911ce Binary files /dev/null and b/RaylibTest/obj/Debug/net6.0/ref/RaylibTest.dll differ diff --git a/RaylibTest/obj/Debug/net6.0/refint/RaylibTest.dll b/RaylibTest/obj/Debug/net6.0/refint/RaylibTest.dll new file mode 100644 index 0000000..40911ce Binary files /dev/null and b/RaylibTest/obj/Debug/net6.0/refint/RaylibTest.dll differ diff --git a/RaylibTest/obj/RaylibTest.csproj.nuget.dgspec.json b/RaylibTest/obj/RaylibTest.csproj.nuget.dgspec.json new file mode 100644 index 0000000..934b8dd --- /dev/null +++ b/RaylibTest/obj/RaylibTest.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj": {} + }, + "projects": { + "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj", + "projectName": "RaylibTest", + "projectPath": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj", + "packagesPath": "/Users/eliasstepanik/.nuget/packages/", + "outputPath": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/eliasstepanik/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Raylib-cs": { + "target": "Package", + "version": "[4.0.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/x64/sdk/6.0.301/RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/RaylibTest/obj/RaylibTest.csproj.nuget.g.props b/RaylibTest/obj/RaylibTest.csproj.nuget.g.props new file mode 100644 index 0000000..a2bb34e --- /dev/null +++ b/RaylibTest/obj/RaylibTest.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/eliasstepanik/.nuget/packages/ + /Users/eliasstepanik/.nuget/packages/ + PackageReference + 6.2.0 + + + + + \ No newline at end of file diff --git a/RaylibTest/obj/RaylibTest.csproj.nuget.g.targets b/RaylibTest/obj/RaylibTest.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/RaylibTest/obj/RaylibTest.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/RaylibTest/obj/project.assets.json b/RaylibTest/obj/project.assets.json new file mode 100644 index 0000000..1dd00d3 --- /dev/null +++ b/RaylibTest/obj/project.assets.json @@ -0,0 +1,182 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "Raylib-cs/4.0.0.1": { + "type": "package", + "dependencies": { + "System.Numerics.Vectors": "4.5.0" + }, + "compile": { + "lib/net6.0/Raylib-cs.dll": {} + }, + "runtime": { + "lib/net6.0/Raylib-cs.dll": {} + }, + "runtimeTargets": { + "runtimes/linux-x64/native/libraylib.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx-x64/native/libraylib.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-x64/native/raylib.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/raylib.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + } + } + }, + "libraries": { + "Raylib-cs/4.0.0.1": { + "sha512": "P8VqY5UsEawOoWElEcLNmLu08zOpvkk5C7eI0OKR8fDL7v6bPkFchC8iUJI47BgPq0lYsQbnMeEOe2bz/HZ5bA==", + "type": "package", + "path": "raylib-cs/4.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net5.0/Raylib-cs.dll", + "lib/net5.0/Raylib-cs.xml", + "lib/net6.0/Raylib-cs.dll", + "lib/net6.0/Raylib-cs.xml", + "raylib-cs.4.0.0.1.nupkg.sha512", + "raylib-cs.nuspec", + "raylib-cs_64x64.png", + "runtimes/linux-x64/native/libraylib.so", + "runtimes/osx-x64/native/libraylib.dylib", + "runtimes/win-x64/native/raylib.dll", + "runtimes/win-x86/native/raylib.dll" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "Raylib-cs >= 4.0.0.1" + ] + }, + "packageFolders": { + "/Users/eliasstepanik/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj", + "projectName": "RaylibTest", + "projectPath": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj", + "packagesPath": "/Users/eliasstepanik/.nuget/packages/", + "outputPath": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/eliasstepanik/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Raylib-cs": { + "target": "Package", + "version": "[4.0.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/x64/sdk/6.0.301/RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/RaylibTest/obj/project.nuget.cache b/RaylibTest/obj/project.nuget.cache new file mode 100644 index 0000000..a26491d --- /dev/null +++ b/RaylibTest/obj/project.nuget.cache @@ -0,0 +1,11 @@ +{ + "version": 2, + "dgSpecHash": "ZLRHEHIik5SzF6attIlTrCgy8PES2zeaUoZ/NTlbSRiMEaTgeWPzV4QjkTW1p81cim/6+h3MFiKGYmK0gfjpgw==", + "success": true, + "projectFilePath": "/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj", + "expectedPackageFiles": [ + "/Users/eliasstepanik/.nuget/packages/raylib-cs/4.0.0.1/raylib-cs.4.0.0.1.nupkg.sha512", + "/Users/eliasstepanik/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/RaylibTest/obj/project.packagespec.json b/RaylibTest/obj/project.packagespec.json new file mode 100644 index 0000000..069d73f --- /dev/null +++ b/RaylibTest/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj","projectName":"RaylibTest","projectPath":"/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/RaylibTest.csproj","outputPath":"/Users/eliasstepanik/RiderProjects/RaylibTest/RaylibTest/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"Raylib-cs":{"target":"Package","version":"[4.0.0.1, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/x64/sdk/6.0.301/RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/RaylibTest/obj/rider.project.restore.info b/RaylibTest/obj/rider.project.restore.info new file mode 100644 index 0000000..25fe700 --- /dev/null +++ b/RaylibTest/obj/rider.project.restore.info @@ -0,0 +1 @@ +16579747529779095 \ No newline at end of file