├── README.md └── Simple RPG Game ├── .vs ├── Console RPG │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ ├── FileContentIndex │ │ ├── 1b5d3f6a-eed4-4b3e-9beb-eaa726b39b69.vsidx │ │ ├── 225c496f-5541-4f05-9ba3-812d3bfcd08e.vsidx │ │ ├── c2780bab-68c9-4d8b-9e32-82d6203313a2.vsidx │ │ ├── d3606816-b17c-4b0e-a843-ecc5670a2244.vsidx │ │ └── read.lock │ └── v17 │ │ ├── .futdcache.v2 │ │ ├── .suo │ │ └── TestStore │ │ └── 0 │ │ ├── 000.testlog │ │ └── testlog.manifest └── ProjectEvaluation │ ├── console rpg.metadata.v5.2 │ └── console rpg.projects.v5.2 ├── Console RPG.csproj ├── Console RPG.sln ├── IO ├── Contracts │ ├── IReader.cs │ └── IWriter.cs ├── Reader.cs └── Writer.cs ├── Models ├── Drawers │ ├── FieldDrawer.cs │ └── Interfaces │ │ ├── IDraw.cs │ │ └── IField.cs ├── Enemies │ ├── EnemiesClasses │ │ ├── Mercenary.cs │ │ ├── Skeleton.cs │ │ ├── Slime.cs │ │ └── Zombie.cs │ ├── EnemyEntity.cs │ └── Interfaces │ │ └── IEnemy.cs ├── Interfaces │ └── IBasicAbility.cs ├── Players │ ├── Interfaces │ │ ├── IExperience.cs │ │ ├── IInventory.cs │ │ └── IPlayer.cs │ ├── PlayerClasses │ │ ├── Human.cs │ │ ├── Skeleton.cs │ │ └── Zombie.cs │ └── PlayerEntity.cs └── Weapons │ └── Weapon.cs ├── Program.cs ├── Utilities └── Messages │ ├── ExceptionMessages.cs │ └── OutputMessages.cs ├── bin └── Debug │ └── netcoreapp3.1 │ ├── Console RPG.deps.json │ ├── Console RPG.dll │ ├── Console RPG.exe │ ├── Console RPG.pdb │ ├── Console RPG.runtimeconfig.dev.json │ └── Console RPG.runtimeconfig.json └── obj ├── Console RPG.csproj.nuget.dgspec.json ├── Console RPG.csproj.nuget.g.props ├── Console RPG.csproj.nuget.g.targets ├── Debug └── netcoreapp3.1 │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ ├── Console RPG.AssemblyInfo.cs │ ├── Console RPG.AssemblyInfoInputs.cache │ ├── Console RPG.GeneratedMSBuildEditorConfig.editorconfig │ ├── Console RPG.assets.cache │ ├── Console RPG.csproj.AssemblyReference.cache │ ├── Console RPG.csproj.BuildWithSkipAnalyzers │ ├── Console RPG.csproj.CoreCompileInputs.cache │ ├── Console RPG.csproj.FileListAbsolute.txt │ ├── Console RPG.dll │ ├── Console RPG.genruntimeconfig.cache │ ├── Console RPG.pdb │ └── apphost.exe ├── project.assets.json └── project.nuget.cache /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/README.md -------------------------------------------------------------------------------- /Simple RPG Game/.vs/Console RPG/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/.vs/Console RPG/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Simple RPG Game/.vs/Console RPG/FileContentIndex/1b5d3f6a-eed4-4b3e-9beb-eaa726b39b69.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/.vs/Console RPG/FileContentIndex/1b5d3f6a-eed4-4b3e-9beb-eaa726b39b69.vsidx -------------------------------------------------------------------------------- /Simple RPG Game/.vs/Console RPG/FileContentIndex/225c496f-5541-4f05-9ba3-812d3bfcd08e.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/.vs/Console RPG/FileContentIndex/225c496f-5541-4f05-9ba3-812d3bfcd08e.vsidx -------------------------------------------------------------------------------- /Simple RPG Game/.vs/Console RPG/FileContentIndex/c2780bab-68c9-4d8b-9e32-82d6203313a2.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/.vs/Console RPG/FileContentIndex/c2780bab-68c9-4d8b-9e32-82d6203313a2.vsidx -------------------------------------------------------------------------------- /Simple RPG Game/.vs/Console RPG/FileContentIndex/d3606816-b17c-4b0e-a843-ecc5670a2244.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/.vs/Console RPG/FileContentIndex/d3606816-b17c-4b0e-a843-ecc5670a2244.vsidx -------------------------------------------------------------------------------- /Simple RPG Game/.vs/Console RPG/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Simple RPG Game/.vs/Console RPG/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/.vs/Console RPG/v17/.futdcache.v2 -------------------------------------------------------------------------------- /Simple RPG Game/.vs/Console RPG/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/.vs/Console RPG/v17/.suo -------------------------------------------------------------------------------- /Simple RPG Game/.vs/Console RPG/v17/TestStore/0/000.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/.vs/Console RPG/v17/TestStore/0/000.testlog -------------------------------------------------------------------------------- /Simple RPG Game/.vs/Console RPG/v17/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/.vs/Console RPG/v17/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /Simple RPG Game/.vs/ProjectEvaluation/console rpg.metadata.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/.vs/ProjectEvaluation/console rpg.metadata.v5.2 -------------------------------------------------------------------------------- /Simple RPG Game/.vs/ProjectEvaluation/console rpg.projects.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/.vs/ProjectEvaluation/console rpg.projects.v5.2 -------------------------------------------------------------------------------- /Simple RPG Game/Console RPG.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Console RPG.csproj -------------------------------------------------------------------------------- /Simple RPG Game/Console RPG.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Console RPG.sln -------------------------------------------------------------------------------- /Simple RPG Game/IO/Contracts/IReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/IO/Contracts/IReader.cs -------------------------------------------------------------------------------- /Simple RPG Game/IO/Contracts/IWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/IO/Contracts/IWriter.cs -------------------------------------------------------------------------------- /Simple RPG Game/IO/Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/IO/Reader.cs -------------------------------------------------------------------------------- /Simple RPG Game/IO/Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/IO/Writer.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Drawers/FieldDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Drawers/FieldDrawer.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Drawers/Interfaces/IDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Drawers/Interfaces/IDraw.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Drawers/Interfaces/IField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Drawers/Interfaces/IField.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Enemies/EnemiesClasses/Mercenary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Enemies/EnemiesClasses/Mercenary.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Enemies/EnemiesClasses/Skeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Enemies/EnemiesClasses/Skeleton.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Enemies/EnemiesClasses/Slime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Enemies/EnemiesClasses/Slime.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Enemies/EnemiesClasses/Zombie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Enemies/EnemiesClasses/Zombie.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Enemies/EnemyEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Enemies/EnemyEntity.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Enemies/Interfaces/IEnemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Enemies/Interfaces/IEnemy.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Interfaces/IBasicAbility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Interfaces/IBasicAbility.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Players/Interfaces/IExperience.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Players/Interfaces/IExperience.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Players/Interfaces/IInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Players/Interfaces/IInventory.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Players/Interfaces/IPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Players/Interfaces/IPlayer.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Players/PlayerClasses/Human.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Players/PlayerClasses/Human.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Players/PlayerClasses/Skeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Players/PlayerClasses/Skeleton.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Players/PlayerClasses/Zombie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Players/PlayerClasses/Zombie.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Players/PlayerEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Players/PlayerEntity.cs -------------------------------------------------------------------------------- /Simple RPG Game/Models/Weapons/Weapon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Models/Weapons/Weapon.cs -------------------------------------------------------------------------------- /Simple RPG Game/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Program.cs -------------------------------------------------------------------------------- /Simple RPG Game/Utilities/Messages/ExceptionMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Utilities/Messages/ExceptionMessages.cs -------------------------------------------------------------------------------- /Simple RPG Game/Utilities/Messages/OutputMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/Utilities/Messages/OutputMessages.cs -------------------------------------------------------------------------------- /Simple RPG Game/bin/Debug/netcoreapp3.1/Console RPG.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/bin/Debug/netcoreapp3.1/Console RPG.deps.json -------------------------------------------------------------------------------- /Simple RPG Game/bin/Debug/netcoreapp3.1/Console RPG.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/bin/Debug/netcoreapp3.1/Console RPG.dll -------------------------------------------------------------------------------- /Simple RPG Game/bin/Debug/netcoreapp3.1/Console RPG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/bin/Debug/netcoreapp3.1/Console RPG.exe -------------------------------------------------------------------------------- /Simple RPG Game/bin/Debug/netcoreapp3.1/Console RPG.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/bin/Debug/netcoreapp3.1/Console RPG.pdb -------------------------------------------------------------------------------- /Simple RPG Game/bin/Debug/netcoreapp3.1/Console RPG.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/bin/Debug/netcoreapp3.1/Console RPG.runtimeconfig.dev.json -------------------------------------------------------------------------------- /Simple RPG Game/bin/Debug/netcoreapp3.1/Console RPG.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/bin/Debug/netcoreapp3.1/Console RPG.runtimeconfig.json -------------------------------------------------------------------------------- /Simple RPG Game/obj/Console RPG.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/Console RPG.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Simple RPG Game/obj/Console RPG.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/Console RPG.csproj.nuget.g.props -------------------------------------------------------------------------------- /Simple RPG Game/obj/Console RPG.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/Console RPG.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Simple RPG Game/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.AssemblyInfo.cs -------------------------------------------------------------------------------- /Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f067b775c771035838446a3e4cfe46cb7049a708 2 | -------------------------------------------------------------------------------- /Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.assets.cache -------------------------------------------------------------------------------- /Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7f690063bbc79545aa0b149fbe6b5602d01a2f66 2 | -------------------------------------------------------------------------------- /Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.dll -------------------------------------------------------------------------------- /Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 9820df06635cb13e8e3d55128a6ba2c8aaffc808 2 | -------------------------------------------------------------------------------- /Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/Debug/netcoreapp3.1/Console RPG.pdb -------------------------------------------------------------------------------- /Simple RPG Game/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /Simple RPG Game/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/project.assets.json -------------------------------------------------------------------------------- /Simple RPG Game/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venci0003/Simple-RPG/HEAD/Simple RPG Game/obj/project.nuget.cache --------------------------------------------------------------------------------