diff --git a/Player.cs b/Player.cs index b5d65cd..8889413 100644 --- a/Player.cs +++ b/Player.cs @@ -12,6 +12,7 @@ public class Player : Entity public Random RNG = new Random(); private Stopwatch movementTimer = new Stopwatch(); + private Stopwatch deathwindowTimer = new Stopwatch(); private const int MovementDelayMilliseconds = 100; // Adjust this value to control movement speed public int HP = 100; public int MaxHP = 100; @@ -19,6 +20,8 @@ public class Player : Entity public int MaxMana = 100; public int armor = 1; public int Gold = 0; + public bool isDead = false; + public bool showdeathwindow = false; private SchedulingSystem _schedulingSystem; private List mobs = new List(); @@ -86,12 +89,20 @@ public void HandleInput(Map map, List mobs) // Reset the movement timer movementTimer.Restart(); + //update player + Update(); } } public void tryToMove(int x, int y, Map map, List mobs) { + //dont move if the player is dead + if (isDead) + { + return; + } + int newX = Position.X + x; int newY = Position.Y + y; @@ -165,5 +176,23 @@ public void TakeDamage(double damage) DMGsound.Play(); } + public void Update() + { + //dead + if (HP <= 0) + { + isDead = true; + this.Symbol = '&'; + this.BackgroundColor = Color.Black; + this.FillColor = Color.Red; + //wait a bit + deathwindowTimer.Start(); + if (deathwindowTimer.ElapsedMilliseconds >= 1000) + { + showdeathwindow = true; + } + } + } + } } diff --git a/Program.cs b/Program.cs index 1fcb969..ec410c0 100644 --- a/Program.cs +++ b/Program.cs @@ -35,8 +35,9 @@ static void Main(string[] args) //UI and ui grid var UIgrid = new Grid (UIWidth, UIHeight); + var popupwindowgrid = new Grid (mapWidth, mapHeight); var ui = new UI(UIgrid); - + var popupui = new UI(popupwindowgrid); var upStairsPosition = FindWalkableCell(gameMap); var downStairsPosition = FindWalkableCell(gameMap); @@ -104,9 +105,26 @@ static void Main(string[] args) // draw gold value UIgrid.WriteString(15, 1, "Gold: " + player.Gold, Color.Black, Color.Yellow, Color.Black, 1, c => c); + //if player showdeathwindow is true, draw death window + if (player.showdeathwindow == true) + { + popupui.DrawBorderedBox(0, 0, 40, 10, Color.Black, Color.White); + popupwindowgrid.WriteString(18, 0, ":(", Color.Black, Color.Red, Color.Black, 1, c => c); + popupwindowgrid.WriteString(3, 1, "well... looks like you died", Color.Black, Color.White, Color.Black, 1, c => c); + popupwindowgrid.WriteString(14, 9, "[press enter]", Color.Black, Color.White, Color.Black, 1, c => c); + + //on enter, close game + if (Keyboard.IsKeyPressed(Keyboard.Key.Enter)) + { + window.Close(); + break; + } + } + // Render the grid grid.Draw(window, font, gameMap, 0, 0); UIgrid.Draw(window, font, null, 0, 30); + popupwindowgrid.Draw(window, font, null, 5, 15); diff --git a/bin/Debug/net7.0/LilRogue.deps.json b/bin/Debug/net7.0/LilRogue.deps.json deleted file mode 100644 index ba0bf7a..0000000 --- a/bin/Debug/net7.0/LilRogue.deps.json +++ /dev/null @@ -1,2164 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v7.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v7.0": { - "LilRogue/1.0.0": { - "dependencies": { - "SFML.Net": "2.5.1", - "RogueSharp": "4.2.0" - }, - "runtime": { - "LilRogue.dll": {} - } - }, - "CSFML/2.5.2": { - "runtimeTargets": { - "runtimes/fedora-x64/native/libcsfml-audio.so": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libcsfml-graphics.so": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libcsfml-system.so": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libcsfml-window.so": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libsfml-audio.so": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libsfml-audio.so.2.5": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libsfml-audio.so.2.5.1": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libsfml-graphics.so": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libsfml-graphics.so.2.5": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libsfml-graphics.so.2.5.1": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libsfml-system.so": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libsfml-system.so.2.5": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libsfml-system.so.2.5.1": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libsfml-window.so": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libsfml-window.so.2.5": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/fedora-x64/native/libsfml-window.so.2.5.1": { - "rid": "fedora-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libcsfml-audio.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libcsfml-graphics.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libcsfml-system.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libcsfml-window.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libsfml-audio.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libsfml-audio.so.2.5": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libsfml-audio.so.2.5.1": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libsfml-graphics.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libsfml-graphics.so.2.5": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libsfml-graphics.so.2.5.1": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libsfml-system.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libsfml-system.so.2.5": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libsfml-system.so.2.5.1": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libsfml-window.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libsfml-window.so.2.5": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm/native/libsfml-window.so.2.5.1": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libcsfml-audio.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libcsfml-graphics.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libcsfml-system.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libcsfml-window.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libsfml-audio.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libsfml-audio.so.2.5": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libsfml-audio.so.2.5.1": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libsfml-graphics.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libsfml-graphics.so.2.5": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libsfml-graphics.so.2.5.1": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libsfml-system.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libsfml-system.so.2.5": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libsfml-system.so.2.5.1": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libsfml-window.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libsfml-window.so.2.5": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libsfml-window.so.2.5.1": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libcsfml-audio.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libcsfml-graphics.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libcsfml-system.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libcsfml-window.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libsfml-audio.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libsfml-audio.so.2.5": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libsfml-audio.so.2.5.1": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libsfml-graphics.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libsfml-graphics.so.2.5": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libsfml-graphics.so.2.5.1": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libsfml-system.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libsfml-system.so.2.5": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libsfml-system.so.2.5.1": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libsfml-window.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libsfml-window.so.2.5": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libsfml-window.so.2.5.1": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libcsfml-audio.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libcsfml-graphics.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libcsfml-system.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libcsfml-window.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libsfml-audio.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libsfml-audio.so.2.5": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libsfml-audio.so.2.5.1": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libsfml-graphics.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libsfml-graphics.so.2.5": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libsfml-graphics.so.2.5.1": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libsfml-system.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libsfml-system.so.2.5": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libsfml-system.so.2.5.1": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libsfml-window.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libsfml-window.so.2.5": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libsfml-window.so.2.5.1": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/FLAC.framework/FLAC": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/FLAC.framework/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/FLAC.framework/Versions/A/FLAC": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/FLAC.framework/Versions/A/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/FLAC.framework/Versions/Current/FLAC": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/FLAC.framework/Versions/Current/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/OpenAL.framework/OpenAL": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/OpenAL.framework/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/OpenAL.framework/Versions/A/OpenAL": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/OpenAL.framework/Versions/A/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/OpenAL.framework/Versions/Current/OpenAL": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/OpenAL.framework/Versions/Current/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/freetype.framework/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/freetype.framework/Versions/A/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/freetype.framework/Versions/A/freetype": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/freetype.framework/Versions/Current/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/freetype.framework/Versions/Current/freetype": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/freetype.framework/freetype": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libcsfml-audio": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libcsfml-audio.2.5": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libcsfml-audio.2.5.2": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libcsfml-graphics": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libcsfml-graphics.2.5": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libcsfml-graphics.2.5.2": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libcsfml-system": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libcsfml-system.2.5": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libcsfml-system.2.5.2": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libcsfml-window": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libcsfml-window.2.5": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libcsfml-window.2.5.2": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-audio": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-audio.2.5": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-audio.2.5.1": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-audio.2.5.1.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-audio.2.5.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-audio.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-graphics": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-graphics.2.5": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-graphics.2.5.1": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-graphics.2.5.1.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-graphics.2.5.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-graphics.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-system": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-system.2.5": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-system.2.5.1": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-system.2.5.1.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-system.2.5.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-system.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-window": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-window.2.5": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-window.2.5.1": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-window.2.5.1.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-window.2.5.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libsfml-window.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/ogg.framework/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/ogg.framework/Versions/A/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/ogg.framework/Versions/A/ogg": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/ogg.framework/Versions/Current/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/ogg.framework/Versions/Current/ogg": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/ogg.framework/ogg": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbis.framework/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbis.framework/Versions/A/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbis.framework/Versions/A/vorbis": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbis.framework/Versions/Current/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbis.framework/Versions/Current/vorbis": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbis.framework/vorbis": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbisenc.framework/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbisenc.framework/Versions/A/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbisenc.framework/Versions/A/vorbisenc": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbisenc.framework/Versions/Current/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbisenc.framework/Versions/Current/vorbisenc": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbisenc.framework/vorbisenc": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbisfile.framework/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbisfile.framework/Versions/A/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbisfile.framework/Versions/A/vorbisfile": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbisfile.framework/Versions/Current/Resources/Info.plist": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbisfile.framework/Versions/Current/vorbisfile": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/vorbisfile.framework/vorbisfile": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/csfml-audio.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/csfml-graphics.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/csfml-system.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/csfml-window.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x64/native/openal32.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/csfml-audio.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/csfml-graphics.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/csfml-system.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/csfml-window.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-x86/native/openal32.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "RogueSharp/4.2.0": { - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.0/RogueSharp.dll": { - "assemblyVersion": "4.2.0.0", - "fileVersion": "4.2.0.0" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "SFML.Audio/2.5.1": { - "dependencies": { - "CSFML": "2.5.2", - "SFML.System": "2.5.1" - }, - "runtime": { - "lib/netstandard2.0/SFML.Audio.dll": { - "assemblyVersion": "2.5.1.0", - "fileVersion": "2.5.1.0" - } - } - }, - "SFML.Graphics/2.5.1": { - "dependencies": { - "CSFML": "2.5.2", - "SFML.System": "2.5.1", - "SFML.Window": "2.5.1" - }, - "runtime": { - "lib/netstandard2.0/SFML.Graphics.dll": { - "assemblyVersion": "2.5.1.0", - "fileVersion": "2.5.1.0" - } - } - }, - "SFML.Net/2.5.1": { - "dependencies": { - "SFML.Audio": "2.5.1", - "SFML.Graphics": "2.5.1", - "SFML.System": "2.5.1", - "SFML.Window": "2.5.1" - } - }, - "SFML.System/2.5.1": { - "dependencies": { - "CSFML": "2.5.2" - }, - "runtime": { - "lib/netstandard2.0/SFML.System.dll": { - "assemblyVersion": "2.5.1.0", - "fileVersion": "2.5.1.0" - } - } - }, - "SFML.Window/2.5.1": { - "dependencies": { - "CSFML": "2.5.2", - "SFML.System": "2.5.1" - }, - "runtime": { - "lib/netstandard2.0/SFML.Window.dll": { - "assemblyVersion": "2.5.1.0", - "fileVersion": "2.5.1.0" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - } - } - }, - "libraries": { - "LilRogue/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "CSFML/2.5.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cVDRupdYgLdVB8uXpHsLmsyTyJKjGAtyzj5uhQ1LsDbJsCuDcXirwwejEFOpsu7AeF3wyl1jBAAA+grBaWwZLQ==", - "path": "csfml/2.5.2", - "hashPath": "csfml.2.5.2.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "RogueSharp/4.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-z4Jc2jpu3lm2CzjQpTxDz8urHZc5CjIdTEeD2A0mUTrRdUBmneXjpbzk2CCzh5VSqgP/5r3kEaQczUgANOAmSA==", - "path": "roguesharp/4.2.0", - "hashPath": "roguesharp.4.2.0.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "SFML.Audio/2.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m3nvz5ywAuqn1owBzZ8Se1BzKPZt+IgSUOBqAzxgYx0RAbUw+Dp+ArCaEWPjiKOrsyIw1nMHQXBoLawpEhJWlg==", - "path": "sfml.audio/2.5.1", - "hashPath": "sfml.audio.2.5.1.nupkg.sha512" - }, - "SFML.Graphics/2.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-12QtQ7HxOQohpc4P9/O35M5GwjJhuBO8RaaX3MkXSz4QSfY96eskuqcx/OuZ3sJ1bXAWf+93zO+V0zGoy9tvNQ==", - "path": "sfml.graphics/2.5.1", - "hashPath": "sfml.graphics.2.5.1.nupkg.sha512" - }, - "SFML.Net/2.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pD7nVZ+2QWl9TMj3bSQf7X/L8+TquyU5zSyZZ3bXYH++Prsmk2fqBV0epl58rlr27pZGVTks/QuMuisyKxuNxA==", - "path": "sfml.net/2.5.1", - "hashPath": "sfml.net.2.5.1.nupkg.sha512" - }, - "SFML.System/2.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T5mEP2cxRDYXffigaJ+RdYR/iqoge9VgGYssZ3scXYdH98Eu53vDO7RQ2YUyQNI2UqT3F8CZR3/Mzbb60qdLA==", - "path": "sfml.system/2.5.1", - "hashPath": "sfml.system.2.5.1.nupkg.sha512" - }, - "SFML.Window/2.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ID+dYhcTA4RgU9b+gnOWs9GlBHTbBy407yqBKxRjLYQpb724/duJ1e0qJivosQ2+ftQJT3MHpPfYWF8drU5IWw==", - "path": "sfml.window/2.5.1", - "hashPath": "sfml.window.2.5.1.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", - "path": "system.buffers/4.3.0", - "hashPath": "system.buffers.4.3.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", - "path": "system.diagnostics.diagnosticsource/4.3.0", - "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "path": "system.security.cryptography.cng/4.3.0", - "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/bin/Debug/net7.0/LilRogue.dll b/bin/Debug/net7.0/LilRogue.dll index 12cebcb..b034f67 100644 Binary files a/bin/Debug/net7.0/LilRogue.dll and b/bin/Debug/net7.0/LilRogue.dll differ diff --git a/bin/Debug/net7.0/LilRogue.exe b/bin/Debug/net7.0/LilRogue.exe deleted file mode 100644 index e65fb96..0000000 Binary files a/bin/Debug/net7.0/LilRogue.exe and /dev/null differ diff --git a/bin/Debug/net7.0/LilRogue.pdb b/bin/Debug/net7.0/LilRogue.pdb deleted file mode 100644 index e0caba7..0000000 Binary files a/bin/Debug/net7.0/LilRogue.pdb and /dev/null differ diff --git a/bin/Debug/net7.0/LilRogue.runtimeconfig.json b/bin/Debug/net7.0/LilRogue.runtimeconfig.json deleted file mode 100644 index 184be8b..0000000 --- a/bin/Debug/net7.0/LilRogue.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net7.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "7.0.0" - } - } -} \ No newline at end of file diff --git a/bin/Debug/net7.0/PublicPixel.ttf b/bin/Debug/net7.0/PublicPixel.ttf deleted file mode 100644 index 618e5bb..0000000 Binary files a/bin/Debug/net7.0/PublicPixel.ttf and /dev/null differ diff --git a/bin/Debug/net7.0/RogueSharp.dll b/bin/Debug/net7.0/RogueSharp.dll deleted file mode 100644 index a5a8a86..0000000 Binary files a/bin/Debug/net7.0/RogueSharp.dll and /dev/null differ diff --git a/bin/Debug/net7.0/SFML.Audio.dll b/bin/Debug/net7.0/SFML.Audio.dll deleted file mode 100644 index f0b659c..0000000 Binary files a/bin/Debug/net7.0/SFML.Audio.dll and /dev/null differ diff --git a/bin/Debug/net7.0/SFML.Graphics.dll b/bin/Debug/net7.0/SFML.Graphics.dll deleted file mode 100644 index 25f3021..0000000 Binary files a/bin/Debug/net7.0/SFML.Graphics.dll and /dev/null differ diff --git a/bin/Debug/net7.0/SFML.System.dll b/bin/Debug/net7.0/SFML.System.dll deleted file mode 100644 index 26614f2..0000000 Binary files a/bin/Debug/net7.0/SFML.System.dll and /dev/null differ diff --git a/bin/Debug/net7.0/SFML.Window.dll b/bin/Debug/net7.0/SFML.Window.dll deleted file mode 100644 index f4d356c..0000000 Binary files a/bin/Debug/net7.0/SFML.Window.dll and /dev/null differ diff --git a/bin/Debug/net7.0/attack.wav b/bin/Debug/net7.0/attack.wav deleted file mode 100644 index 85f320b..0000000 Binary files a/bin/Debug/net7.0/attack.wav and /dev/null differ diff --git a/bin/Debug/net7.0/blipSelect.wav b/bin/Debug/net7.0/blipSelect.wav deleted file mode 100644 index fff9981..0000000 Binary files a/bin/Debug/net7.0/blipSelect.wav and /dev/null differ diff --git a/bin/Debug/net7.0/explosion.wav b/bin/Debug/net7.0/explosion.wav deleted file mode 100644 index 8374773..0000000 Binary files a/bin/Debug/net7.0/explosion.wav and /dev/null differ diff --git a/bin/Debug/net7.0/hitHurt.wav b/bin/Debug/net7.0/hitHurt.wav deleted file mode 100644 index 3094f14..0000000 Binary files a/bin/Debug/net7.0/hitHurt.wav and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libcsfml-audio.so b/bin/Debug/net7.0/runtimes/fedora-x64/native/libcsfml-audio.so deleted file mode 100644 index c24d57f..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libcsfml-audio.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libcsfml-graphics.so b/bin/Debug/net7.0/runtimes/fedora-x64/native/libcsfml-graphics.so deleted file mode 100644 index d84db1a..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libcsfml-graphics.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libcsfml-system.so b/bin/Debug/net7.0/runtimes/fedora-x64/native/libcsfml-system.so deleted file mode 100644 index 910c40a..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libcsfml-system.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libcsfml-window.so b/bin/Debug/net7.0/runtimes/fedora-x64/native/libcsfml-window.so deleted file mode 100644 index c6e80e4..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libcsfml-window.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-audio.so b/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-audio.so deleted file mode 100644 index 6ed8b61..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-audio.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-audio.so.2.5 b/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-audio.so.2.5 deleted file mode 100644 index 6ed8b61..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-audio.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-audio.so.2.5.1 b/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-audio.so.2.5.1 deleted file mode 100644 index 6ed8b61..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-audio.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-graphics.so b/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-graphics.so deleted file mode 100644 index dc0af93..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-graphics.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-graphics.so.2.5 b/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-graphics.so.2.5 deleted file mode 100644 index dc0af93..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-graphics.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-graphics.so.2.5.1 b/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-graphics.so.2.5.1 deleted file mode 100644 index dc0af93..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-graphics.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-system.so b/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-system.so deleted file mode 100644 index 8a72f31..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-system.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-system.so.2.5 b/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-system.so.2.5 deleted file mode 100644 index 8a72f31..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-system.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-system.so.2.5.1 b/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-system.so.2.5.1 deleted file mode 100644 index 8a72f31..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-system.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-window.so b/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-window.so deleted file mode 100644 index d5db772..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-window.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-window.so.2.5 b/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-window.so.2.5 deleted file mode 100644 index d5db772..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-window.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-window.so.2.5.1 b/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-window.so.2.5.1 deleted file mode 100644 index d5db772..0000000 Binary files a/bin/Debug/net7.0/runtimes/fedora-x64/native/libsfml-window.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libcsfml-audio.so b/bin/Debug/net7.0/runtimes/linux-arm/native/libcsfml-audio.so deleted file mode 100644 index 9dd98ca..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libcsfml-audio.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libcsfml-graphics.so b/bin/Debug/net7.0/runtimes/linux-arm/native/libcsfml-graphics.so deleted file mode 100644 index 8caa0ec..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libcsfml-graphics.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libcsfml-system.so b/bin/Debug/net7.0/runtimes/linux-arm/native/libcsfml-system.so deleted file mode 100644 index 50812df..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libcsfml-system.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libcsfml-window.so b/bin/Debug/net7.0/runtimes/linux-arm/native/libcsfml-window.so deleted file mode 100644 index a2fdbbd..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libcsfml-window.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-audio.so b/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-audio.so deleted file mode 100644 index 795e677..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-audio.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-audio.so.2.5 b/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-audio.so.2.5 deleted file mode 100644 index 795e677..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-audio.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-audio.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-audio.so.2.5.1 deleted file mode 100644 index 795e677..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-audio.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-graphics.so b/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-graphics.so deleted file mode 100644 index bfbf0f6..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-graphics.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-graphics.so.2.5 b/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-graphics.so.2.5 deleted file mode 100644 index bfbf0f6..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-graphics.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-graphics.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-graphics.so.2.5.1 deleted file mode 100644 index bfbf0f6..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-graphics.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-system.so b/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-system.so deleted file mode 100644 index 5243e57..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-system.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-system.so.2.5 b/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-system.so.2.5 deleted file mode 100644 index 5243e57..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-system.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-system.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-system.so.2.5.1 deleted file mode 100644 index 5243e57..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-system.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-window.so b/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-window.so deleted file mode 100644 index 4c6d59b..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-window.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-window.so.2.5 b/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-window.so.2.5 deleted file mode 100644 index 4c6d59b..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-window.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-window.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-window.so.2.5.1 deleted file mode 100644 index 4c6d59b..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libsfml-window.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libcsfml-audio.so b/bin/Debug/net7.0/runtimes/linux-arm64/native/libcsfml-audio.so deleted file mode 100644 index 24bd7fc..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libcsfml-audio.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libcsfml-graphics.so b/bin/Debug/net7.0/runtimes/linux-arm64/native/libcsfml-graphics.so deleted file mode 100644 index 44560f8..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libcsfml-graphics.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libcsfml-system.so b/bin/Debug/net7.0/runtimes/linux-arm64/native/libcsfml-system.so deleted file mode 100644 index 62dcec4..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libcsfml-system.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libcsfml-window.so b/bin/Debug/net7.0/runtimes/linux-arm64/native/libcsfml-window.so deleted file mode 100644 index dc850fb..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libcsfml-window.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-audio.so b/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-audio.so deleted file mode 100644 index f4ce3e7..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-audio.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-audio.so.2.5 b/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-audio.so.2.5 deleted file mode 100644 index f4ce3e7..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-audio.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-audio.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-audio.so.2.5.1 deleted file mode 100644 index f4ce3e7..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-audio.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-graphics.so b/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-graphics.so deleted file mode 100644 index ddb2b5b..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-graphics.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-graphics.so.2.5 b/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-graphics.so.2.5 deleted file mode 100644 index ddb2b5b..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-graphics.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-graphics.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-graphics.so.2.5.1 deleted file mode 100644 index ddb2b5b..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-graphics.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-system.so b/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-system.so deleted file mode 100644 index f5ab7a5..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-system.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-system.so.2.5 b/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-system.so.2.5 deleted file mode 100644 index f5ab7a5..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-system.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-system.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-system.so.2.5.1 deleted file mode 100644 index f5ab7a5..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-system.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-window.so b/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-window.so deleted file mode 100644 index 9b8ee92..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-window.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-window.so.2.5 b/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-window.so.2.5 deleted file mode 100644 index 9b8ee92..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-window.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-window.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-window.so.2.5.1 deleted file mode 100644 index 9b8ee92..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libsfml-window.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libcsfml-audio.so b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libcsfml-audio.so deleted file mode 100644 index 94ac2cf..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libcsfml-audio.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libcsfml-graphics.so b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libcsfml-graphics.so deleted file mode 100644 index 2535806..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libcsfml-graphics.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libcsfml-system.so b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libcsfml-system.so deleted file mode 100644 index 0b109eb..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libcsfml-system.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libcsfml-window.so b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libcsfml-window.so deleted file mode 100644 index 9ed85f8..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libcsfml-window.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-audio.so b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-audio.so deleted file mode 100644 index 19a214f..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-audio.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-audio.so.2.5 b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-audio.so.2.5 deleted file mode 100644 index 19a214f..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-audio.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-audio.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-audio.so.2.5.1 deleted file mode 100644 index 19a214f..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-audio.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-graphics.so b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-graphics.so deleted file mode 100644 index 145aff0..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-graphics.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-graphics.so.2.5 b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-graphics.so.2.5 deleted file mode 100644 index 145aff0..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-graphics.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-graphics.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-graphics.so.2.5.1 deleted file mode 100644 index 145aff0..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-graphics.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-system.so b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-system.so deleted file mode 100644 index af289ab..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-system.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-system.so.2.5 b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-system.so.2.5 deleted file mode 100644 index af289ab..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-system.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-system.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-system.so.2.5.1 deleted file mode 100644 index af289ab..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-system.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-window.so b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-window.so deleted file mode 100644 index 39e339b..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-window.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-window.so.2.5 b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-window.so.2.5 deleted file mode 100644 index 39e339b..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-window.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-window.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-window.so.2.5.1 deleted file mode 100644 index 39e339b..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libsfml-window.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libcsfml-audio.so b/bin/Debug/net7.0/runtimes/linux-x64/native/libcsfml-audio.so deleted file mode 100644 index 7f573d4..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libcsfml-audio.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libcsfml-graphics.so b/bin/Debug/net7.0/runtimes/linux-x64/native/libcsfml-graphics.so deleted file mode 100644 index 289552c..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libcsfml-graphics.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libcsfml-system.so b/bin/Debug/net7.0/runtimes/linux-x64/native/libcsfml-system.so deleted file mode 100644 index 5f861f9..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libcsfml-system.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libcsfml-window.so b/bin/Debug/net7.0/runtimes/linux-x64/native/libcsfml-window.so deleted file mode 100644 index e73992a..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libcsfml-window.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-audio.so b/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-audio.so deleted file mode 100644 index 27cd2f0..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-audio.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-audio.so.2.5 b/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-audio.so.2.5 deleted file mode 100644 index 27cd2f0..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-audio.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-audio.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-audio.so.2.5.1 deleted file mode 100644 index 27cd2f0..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-audio.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-graphics.so b/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-graphics.so deleted file mode 100644 index 09af608..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-graphics.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-graphics.so.2.5 b/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-graphics.so.2.5 deleted file mode 100644 index 09af608..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-graphics.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-graphics.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-graphics.so.2.5.1 deleted file mode 100644 index 09af608..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-graphics.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-system.so b/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-system.so deleted file mode 100644 index e748853..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-system.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-system.so.2.5 b/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-system.so.2.5 deleted file mode 100644 index e748853..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-system.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-system.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-system.so.2.5.1 deleted file mode 100644 index e748853..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-system.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-window.so b/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-window.so deleted file mode 100644 index a7056ba..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-window.so and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-window.so.2.5 b/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-window.so.2.5 deleted file mode 100644 index a7056ba..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-window.so.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-window.so.2.5.1 b/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-window.so.2.5.1 deleted file mode 100644 index a7056ba..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libsfml-window.so.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/FLAC b/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/FLAC deleted file mode 100644 index e9cbc1e..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/FLAC and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Resources/Info.plist deleted file mode 100644 index 17506ff..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - FLAC - CFBundleIdentifier - org.sfml-dev.FLAC - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Versions/A/FLAC b/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Versions/A/FLAC deleted file mode 100644 index e9cbc1e..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Versions/A/FLAC and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Versions/A/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index 17506ff..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - FLAC - CFBundleIdentifier - org.sfml-dev.FLAC - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Versions/Current/FLAC b/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Versions/Current/FLAC deleted file mode 100644 index e9cbc1e..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Versions/Current/FLAC and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Versions/Current/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Versions/Current/Resources/Info.plist deleted file mode 100644 index 17506ff..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/FLAC.framework/Versions/Current/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - FLAC - CFBundleIdentifier - org.sfml-dev.FLAC - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/OpenAL b/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/OpenAL deleted file mode 100644 index 5d4c3ec..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/OpenAL and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Resources/Info.plist deleted file mode 100644 index abcc123..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - OpenAL - CFBundleIdentifier - org.sfml-dev.OpenAL - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Versions/A/OpenAL b/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Versions/A/OpenAL deleted file mode 100644 index 5d4c3ec..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Versions/A/OpenAL and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Versions/A/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index abcc123..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - OpenAL - CFBundleIdentifier - org.sfml-dev.OpenAL - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Versions/Current/OpenAL b/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Versions/Current/OpenAL deleted file mode 100644 index 5d4c3ec..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Versions/Current/OpenAL and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Versions/Current/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Versions/Current/Resources/Info.plist deleted file mode 100644 index abcc123..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/OpenAL.framework/Versions/Current/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - OpenAL - CFBundleIdentifier - org.sfml-dev.OpenAL - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Resources/Info.plist deleted file mode 100644 index 3fae0b2..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - freetype - CFBundleIdentifier - org.sfml-dev.freetype - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Versions/A/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index 3fae0b2..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - freetype - CFBundleIdentifier - org.sfml-dev.freetype - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Versions/A/freetype b/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Versions/A/freetype deleted file mode 100644 index c30b3b6..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Versions/A/freetype and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Versions/Current/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Versions/Current/Resources/Info.plist deleted file mode 100644 index 3fae0b2..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Versions/Current/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - freetype - CFBundleIdentifier - org.sfml-dev.freetype - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Versions/Current/freetype b/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Versions/Current/freetype deleted file mode 100644 index c30b3b6..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/Versions/Current/freetype and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/freetype b/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/freetype deleted file mode 100644 index c30b3b6..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/freetype.framework/freetype and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-audio b/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-audio deleted file mode 100644 index fe4586c..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-audio and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-audio.2.5 b/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-audio.2.5 deleted file mode 100644 index fe4586c..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-audio.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-audio.2.5.2 b/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-audio.2.5.2 deleted file mode 100644 index fe4586c..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-audio.2.5.2 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-graphics b/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-graphics deleted file mode 100644 index 68aa544..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-graphics and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-graphics.2.5 b/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-graphics.2.5 deleted file mode 100644 index 68aa544..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-graphics.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-graphics.2.5.2 b/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-graphics.2.5.2 deleted file mode 100644 index 68aa544..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-graphics.2.5.2 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-system b/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-system deleted file mode 100644 index 4a22cd4..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-system and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-system.2.5 b/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-system.2.5 deleted file mode 100644 index 4a22cd4..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-system.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-system.2.5.2 b/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-system.2.5.2 deleted file mode 100644 index 4a22cd4..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-system.2.5.2 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-window b/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-window deleted file mode 100644 index 08674f1..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-window and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-window.2.5 b/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-window.2.5 deleted file mode 100644 index 08674f1..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-window.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-window.2.5.2 b/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-window.2.5.2 deleted file mode 100644 index 08674f1..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libcsfml-window.2.5.2 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio deleted file mode 100644 index d619140..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.2.5 b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.2.5 deleted file mode 100644 index d619140..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.2.5.1 b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.2.5.1 deleted file mode 100644 index d619140..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.2.5.1.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.2.5.1.dylib deleted file mode 100644 index d619140..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.2.5.1.dylib and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.2.5.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.2.5.dylib deleted file mode 100644 index d619140..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.2.5.dylib and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.dylib deleted file mode 100644 index d619140..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-audio.dylib and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics deleted file mode 100644 index 16e3210..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.2.5 b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.2.5 deleted file mode 100644 index 16e3210..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.2.5.1 b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.2.5.1 deleted file mode 100644 index 16e3210..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.2.5.1.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.2.5.1.dylib deleted file mode 100644 index 16e3210..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.2.5.1.dylib and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.2.5.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.2.5.dylib deleted file mode 100644 index 16e3210..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.2.5.dylib and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.dylib deleted file mode 100644 index 16e3210..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-graphics.dylib and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system deleted file mode 100644 index 6036baf..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.2.5 b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.2.5 deleted file mode 100644 index 6036baf..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.2.5.1 b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.2.5.1 deleted file mode 100644 index 6036baf..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.2.5.1.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.2.5.1.dylib deleted file mode 100644 index 6036baf..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.2.5.1.dylib and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.2.5.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.2.5.dylib deleted file mode 100644 index 6036baf..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.2.5.dylib and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.dylib deleted file mode 100644 index 6036baf..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-system.dylib and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window deleted file mode 100644 index e1c1451..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.2.5 b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.2.5 deleted file mode 100644 index e1c1451..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.2.5 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.2.5.1 b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.2.5.1 deleted file mode 100644 index e1c1451..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.2.5.1 and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.2.5.1.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.2.5.1.dylib deleted file mode 100644 index e1c1451..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.2.5.1.dylib and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.2.5.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.2.5.dylib deleted file mode 100644 index e1c1451..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.2.5.dylib and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.dylib deleted file mode 100644 index e1c1451..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/libsfml-window.dylib and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Resources/Info.plist deleted file mode 100644 index 3b7fe8c..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ogg - CFBundleIdentifier - org.sfml-dev.ogg - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Versions/A/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index 3b7fe8c..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ogg - CFBundleIdentifier - org.sfml-dev.ogg - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Versions/A/ogg b/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Versions/A/ogg deleted file mode 100644 index ac5110e..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Versions/A/ogg and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Versions/Current/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Versions/Current/Resources/Info.plist deleted file mode 100644 index 3b7fe8c..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Versions/Current/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ogg - CFBundleIdentifier - org.sfml-dev.ogg - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Versions/Current/ogg b/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Versions/Current/ogg deleted file mode 100644 index ac5110e..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/Versions/Current/ogg and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/ogg b/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/ogg deleted file mode 100644 index ac5110e..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/ogg.framework/ogg and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Resources/Info.plist deleted file mode 100644 index 49288dc..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - vorbis - CFBundleIdentifier - org.sfml-dev.vorbis - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Versions/A/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index 49288dc..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - vorbis - CFBundleIdentifier - org.sfml-dev.vorbis - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Versions/A/vorbis b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Versions/A/vorbis deleted file mode 100644 index c3e4525..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Versions/A/vorbis and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Versions/Current/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Versions/Current/Resources/Info.plist deleted file mode 100644 index 49288dc..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Versions/Current/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - vorbis - CFBundleIdentifier - org.sfml-dev.vorbis - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Versions/Current/vorbis b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Versions/Current/vorbis deleted file mode 100644 index c3e4525..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/Versions/Current/vorbis and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/vorbis b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/vorbis deleted file mode 100644 index c3e4525..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbis.framework/vorbis and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Resources/Info.plist deleted file mode 100644 index 7239ec0..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - vorbisenc - CFBundleIdentifier - org.sfml-dev.vorbisenc - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Versions/A/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index 7239ec0..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - vorbisenc - CFBundleIdentifier - org.sfml-dev.vorbisenc - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Versions/A/vorbisenc b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Versions/A/vorbisenc deleted file mode 100644 index 1914d1c..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Versions/A/vorbisenc and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Versions/Current/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Versions/Current/Resources/Info.plist deleted file mode 100644 index 7239ec0..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Versions/Current/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - vorbisenc - CFBundleIdentifier - org.sfml-dev.vorbisenc - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Versions/Current/vorbisenc b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Versions/Current/vorbisenc deleted file mode 100644 index 1914d1c..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/Versions/Current/vorbisenc and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/vorbisenc b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/vorbisenc deleted file mode 100644 index 1914d1c..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisenc.framework/vorbisenc and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Resources/Info.plist deleted file mode 100644 index 02c18c5..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - vorbisfile - CFBundleIdentifier - org.sfml-dev.vorbisfile - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Versions/A/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index 02c18c5..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - vorbisfile - CFBundleIdentifier - org.sfml-dev.vorbisfile - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Versions/A/vorbisfile b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Versions/A/vorbisfile deleted file mode 100644 index 355bbaa..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Versions/A/vorbisfile and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Versions/Current/Resources/Info.plist b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Versions/Current/Resources/Info.plist deleted file mode 100644 index 02c18c5..0000000 --- a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Versions/Current/Resources/Info.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - vorbisfile - CFBundleIdentifier - org.sfml-dev.vorbisfile - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - FMWK - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFBundleSupportedPlatforms - MacOSX - - diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Versions/Current/vorbisfile b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Versions/Current/vorbisfile deleted file mode 100644 index 355bbaa..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/Versions/Current/vorbisfile and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/vorbisfile b/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/vorbisfile deleted file mode 100644 index 355bbaa..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx-x64/native/vorbisfile.framework/vorbisfile and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-x64/native/csfml-audio.dll b/bin/Debug/net7.0/runtimes/win-x64/native/csfml-audio.dll deleted file mode 100644 index b46dc35..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-x64/native/csfml-audio.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-x64/native/csfml-graphics.dll b/bin/Debug/net7.0/runtimes/win-x64/native/csfml-graphics.dll deleted file mode 100644 index 8b2b734..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-x64/native/csfml-graphics.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-x64/native/csfml-system.dll b/bin/Debug/net7.0/runtimes/win-x64/native/csfml-system.dll deleted file mode 100644 index 1efc6a2..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-x64/native/csfml-system.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-x64/native/csfml-window.dll b/bin/Debug/net7.0/runtimes/win-x64/native/csfml-window.dll deleted file mode 100644 index d78e6b9..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-x64/native/csfml-window.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-x64/native/openal32.dll b/bin/Debug/net7.0/runtimes/win-x64/native/openal32.dll deleted file mode 100644 index 7760c05..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-x64/native/openal32.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-x86/native/csfml-audio.dll b/bin/Debug/net7.0/runtimes/win-x86/native/csfml-audio.dll deleted file mode 100644 index 9217aab..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-x86/native/csfml-audio.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-x86/native/csfml-graphics.dll b/bin/Debug/net7.0/runtimes/win-x86/native/csfml-graphics.dll deleted file mode 100644 index 73fdcca..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-x86/native/csfml-graphics.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-x86/native/csfml-system.dll b/bin/Debug/net7.0/runtimes/win-x86/native/csfml-system.dll deleted file mode 100644 index 937aacb..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-x86/native/csfml-system.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-x86/native/csfml-window.dll b/bin/Debug/net7.0/runtimes/win-x86/native/csfml-window.dll deleted file mode 100644 index 0a7fac1..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-x86/native/csfml-window.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-x86/native/openal32.dll b/bin/Debug/net7.0/runtimes/win-x86/native/openal32.dll deleted file mode 100644 index 1bb27f0..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-x86/native/openal32.dll and /dev/null differ diff --git a/mob.cs b/mob.cs index 6067033..8a357a7 100644 --- a/mob.cs +++ b/mob.cs @@ -88,7 +88,7 @@ public void Update(Map map, Player player, SchedulingSystem schedulingSystem, Li if (ToGoalPosition.X == player.Position.X && ToGoalPosition.Y == player.Position.Y) { Console.WriteLine("player reached! damaging player..."); - player.TakeDamage(1.25); + player.TakeDamage(4.25); break; } else if (ToGoalPosition.X == mob.Position.X && ToGoalPosition.Y == mob.Position.Y) //blocked by another mob