├── .gitignore ├── README.md ├── simple-console-RPG.sln └── simple-console-RPG ├── AdventureGenerator.cs ├── CharacterCreator.cs ├── Dice.cs ├── Grammar.cs ├── Notes.cs ├── PlayerInventory.cs ├── PlayerStats.cs ├── Story.cs ├── StoryObjects.cs ├── StoryParameters.cs ├── StorySetup.cs └── simple-console-RPG.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/README.md -------------------------------------------------------------------------------- /simple-console-RPG.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/simple-console-RPG.sln -------------------------------------------------------------------------------- /simple-console-RPG/AdventureGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/simple-console-RPG/AdventureGenerator.cs -------------------------------------------------------------------------------- /simple-console-RPG/CharacterCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/simple-console-RPG/CharacterCreator.cs -------------------------------------------------------------------------------- /simple-console-RPG/Dice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/simple-console-RPG/Dice.cs -------------------------------------------------------------------------------- /simple-console-RPG/Grammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/simple-console-RPG/Grammar.cs -------------------------------------------------------------------------------- /simple-console-RPG/Notes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/simple-console-RPG/Notes.cs -------------------------------------------------------------------------------- /simple-console-RPG/PlayerInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/simple-console-RPG/PlayerInventory.cs -------------------------------------------------------------------------------- /simple-console-RPG/PlayerStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/simple-console-RPG/PlayerStats.cs -------------------------------------------------------------------------------- /simple-console-RPG/Story.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/simple-console-RPG/Story.cs -------------------------------------------------------------------------------- /simple-console-RPG/StoryObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/simple-console-RPG/StoryObjects.cs -------------------------------------------------------------------------------- /simple-console-RPG/StoryParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/simple-console-RPG/StoryParameters.cs -------------------------------------------------------------------------------- /simple-console-RPG/StorySetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/simple-console-RPG/StorySetup.cs -------------------------------------------------------------------------------- /simple-console-RPG/simple-console-RPG.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenry7/text-rpg-adventure/HEAD/simple-console-RPG/simple-console-RPG.csproj --------------------------------------------------------------------------------