├── .gitattributes ├── .gitignore ├── CSharpAdventureGames.sln ├── Overriding └── Overriding │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── TestClasses.cs │ ├── app.config │ └── overriding.csproj ├── README.txt ├── darkneon └── darkneon │ ├── AdvConsts.cs │ ├── Adventure.cs │ ├── Adventure.parser.cs │ ├── Adventure.puzzles.cs │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── WT.cs │ ├── WordType.cs │ ├── darkneon.csproj │ └── gameclasses │ ├── Actor.cs │ ├── ContainerThing.cs │ ├── Room.cs │ ├── RoomList.cs │ ├── Thing.cs │ ├── ThingHolder.cs │ └── ThingList.cs ├── darkneonconsole ├── AdvConsts.cs ├── Adventure.cs ├── Adventure.parser.cs ├── Adventure.puzzles.cs ├── App.config ├── GameRunner.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── WT.cs ├── WordType.cs ├── darkneonconsole.csproj └── gameclasses │ ├── Actor.cs │ ├── ContainerThing.cs │ ├── Room.cs │ ├── RoomList.cs │ ├── Thing.cs │ ├── ThingHolder.cs │ └── ThingList.cs ├── game1 └── game1 │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Room.cs │ └── game01.csproj ├── game10 └── game10 │ ├── AdvConsts.cs │ ├── Adventure.cs │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── game10.csproj │ └── gameclasses │ ├── Actor.cs │ ├── Room.cs │ ├── RoomList.cs │ ├── Thing.cs │ ├── ThingHolder.cs │ └── ThingList.cs ├── game2 └── game2 │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Room.cs │ └── game02.csproj ├── game3 └── game3 │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Room.cs │ └── game03.csproj ├── game4 └── game4 │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Room.cs │ └── game04.csproj ├── game5 └── game5 │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── game05.csproj │ └── gameclasses │ ├── Actor.cs │ ├── Room.cs │ └── Thing.cs ├── game6 └── game6 │ ├── AdvConsts.cs │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── game06.csproj │ └── gameclasses │ ├── Actor.cs │ ├── Room.cs │ ├── RoomList.cs │ └── Thing.cs ├── game7 └── game7 │ ├── AdvConsts.cs │ ├── Adventure.cs │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── game07.csproj │ └── gameclasses │ ├── Actor.cs │ ├── Room.cs │ ├── RoomList.cs │ └── Thing.cs ├── game8 └── game8 │ ├── AdvConsts.cs │ ├── Adventure.cs │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── game08.csproj │ └── gameclasses │ ├── Actor.cs │ ├── Room.cs │ ├── RoomList.cs │ └── Thing.cs └── game9 └── game9 ├── AdvConsts.cs ├── Adventure.cs ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── game09.csproj └── gameclasses ├── Actor.cs ├── Room.cs ├── RoomList.cs ├── Thing.cs ├── ThingHolder.cs └── ThingList.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/.gitignore -------------------------------------------------------------------------------- /CSharpAdventureGames.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/CSharpAdventureGames.sln -------------------------------------------------------------------------------- /Overriding/Overriding/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/Overriding/Overriding/Form1.Designer.cs -------------------------------------------------------------------------------- /Overriding/Overriding/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/Overriding/Overriding/Form1.cs -------------------------------------------------------------------------------- /Overriding/Overriding/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/Overriding/Overriding/Form1.resx -------------------------------------------------------------------------------- /Overriding/Overriding/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/Overriding/Overriding/Program.cs -------------------------------------------------------------------------------- /Overriding/Overriding/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/Overriding/Overriding/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Overriding/Overriding/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/Overriding/Overriding/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Overriding/Overriding/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/Overriding/Overriding/Properties/Resources.resx -------------------------------------------------------------------------------- /Overriding/Overriding/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/Overriding/Overriding/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Overriding/Overriding/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/Overriding/Overriding/Properties/Settings.settings -------------------------------------------------------------------------------- /Overriding/Overriding/TestClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/Overriding/Overriding/TestClasses.cs -------------------------------------------------------------------------------- /Overriding/Overriding/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/Overriding/Overriding/app.config -------------------------------------------------------------------------------- /Overriding/Overriding/overriding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/Overriding/Overriding/overriding.csproj -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/README.txt -------------------------------------------------------------------------------- /darkneon/darkneon/AdvConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/AdvConsts.cs -------------------------------------------------------------------------------- /darkneon/darkneon/Adventure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/Adventure.cs -------------------------------------------------------------------------------- /darkneon/darkneon/Adventure.parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/Adventure.parser.cs -------------------------------------------------------------------------------- /darkneon/darkneon/Adventure.puzzles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/Adventure.puzzles.cs -------------------------------------------------------------------------------- /darkneon/darkneon/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/App.config -------------------------------------------------------------------------------- /darkneon/darkneon/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/Form1.Designer.cs -------------------------------------------------------------------------------- /darkneon/darkneon/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/Form1.cs -------------------------------------------------------------------------------- /darkneon/darkneon/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/Form1.resx -------------------------------------------------------------------------------- /darkneon/darkneon/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/Program.cs -------------------------------------------------------------------------------- /darkneon/darkneon/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /darkneon/darkneon/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /darkneon/darkneon/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/Properties/Resources.resx -------------------------------------------------------------------------------- /darkneon/darkneon/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /darkneon/darkneon/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/Properties/Settings.settings -------------------------------------------------------------------------------- /darkneon/darkneon/WT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/WT.cs -------------------------------------------------------------------------------- /darkneon/darkneon/WordType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/WordType.cs -------------------------------------------------------------------------------- /darkneon/darkneon/darkneon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/darkneon.csproj -------------------------------------------------------------------------------- /darkneon/darkneon/gameclasses/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/gameclasses/Actor.cs -------------------------------------------------------------------------------- /darkneon/darkneon/gameclasses/ContainerThing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/gameclasses/ContainerThing.cs -------------------------------------------------------------------------------- /darkneon/darkneon/gameclasses/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/gameclasses/Room.cs -------------------------------------------------------------------------------- /darkneon/darkneon/gameclasses/RoomList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/gameclasses/RoomList.cs -------------------------------------------------------------------------------- /darkneon/darkneon/gameclasses/Thing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/gameclasses/Thing.cs -------------------------------------------------------------------------------- /darkneon/darkneon/gameclasses/ThingHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/gameclasses/ThingHolder.cs -------------------------------------------------------------------------------- /darkneon/darkneon/gameclasses/ThingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneon/darkneon/gameclasses/ThingList.cs -------------------------------------------------------------------------------- /darkneonconsole/AdvConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/AdvConsts.cs -------------------------------------------------------------------------------- /darkneonconsole/Adventure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/Adventure.cs -------------------------------------------------------------------------------- /darkneonconsole/Adventure.parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/Adventure.parser.cs -------------------------------------------------------------------------------- /darkneonconsole/Adventure.puzzles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/Adventure.puzzles.cs -------------------------------------------------------------------------------- /darkneonconsole/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/App.config -------------------------------------------------------------------------------- /darkneonconsole/GameRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/GameRunner.cs -------------------------------------------------------------------------------- /darkneonconsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/Program.cs -------------------------------------------------------------------------------- /darkneonconsole/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /darkneonconsole/WT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/WT.cs -------------------------------------------------------------------------------- /darkneonconsole/WordType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/WordType.cs -------------------------------------------------------------------------------- /darkneonconsole/darkneonconsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/darkneonconsole.csproj -------------------------------------------------------------------------------- /darkneonconsole/gameclasses/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/gameclasses/Actor.cs -------------------------------------------------------------------------------- /darkneonconsole/gameclasses/ContainerThing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/gameclasses/ContainerThing.cs -------------------------------------------------------------------------------- /darkneonconsole/gameclasses/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/gameclasses/Room.cs -------------------------------------------------------------------------------- /darkneonconsole/gameclasses/RoomList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/gameclasses/RoomList.cs -------------------------------------------------------------------------------- /darkneonconsole/gameclasses/Thing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/gameclasses/Thing.cs -------------------------------------------------------------------------------- /darkneonconsole/gameclasses/ThingHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/gameclasses/ThingHolder.cs -------------------------------------------------------------------------------- /darkneonconsole/gameclasses/ThingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/darkneonconsole/gameclasses/ThingList.cs -------------------------------------------------------------------------------- /game1/game1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game1/game1/App.config -------------------------------------------------------------------------------- /game1/game1/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game1/game1/Form1.Designer.cs -------------------------------------------------------------------------------- /game1/game1/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game1/game1/Form1.cs -------------------------------------------------------------------------------- /game1/game1/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game1/game1/Form1.resx -------------------------------------------------------------------------------- /game1/game1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game1/game1/Program.cs -------------------------------------------------------------------------------- /game1/game1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game1/game1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /game1/game1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game1/game1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /game1/game1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game1/game1/Properties/Resources.resx -------------------------------------------------------------------------------- /game1/game1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game1/game1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /game1/game1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game1/game1/Properties/Settings.settings -------------------------------------------------------------------------------- /game1/game1/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game1/game1/Room.cs -------------------------------------------------------------------------------- /game1/game1/game01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game1/game1/game01.csproj -------------------------------------------------------------------------------- /game10/game10/AdvConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/AdvConsts.cs -------------------------------------------------------------------------------- /game10/game10/Adventure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/Adventure.cs -------------------------------------------------------------------------------- /game10/game10/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/App.config -------------------------------------------------------------------------------- /game10/game10/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/Form1.Designer.cs -------------------------------------------------------------------------------- /game10/game10/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/Form1.cs -------------------------------------------------------------------------------- /game10/game10/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/Form1.resx -------------------------------------------------------------------------------- /game10/game10/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/Program.cs -------------------------------------------------------------------------------- /game10/game10/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /game10/game10/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /game10/game10/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/Properties/Resources.resx -------------------------------------------------------------------------------- /game10/game10/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /game10/game10/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/Properties/Settings.settings -------------------------------------------------------------------------------- /game10/game10/game10.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/game10.csproj -------------------------------------------------------------------------------- /game10/game10/gameclasses/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/gameclasses/Actor.cs -------------------------------------------------------------------------------- /game10/game10/gameclasses/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/gameclasses/Room.cs -------------------------------------------------------------------------------- /game10/game10/gameclasses/RoomList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/gameclasses/RoomList.cs -------------------------------------------------------------------------------- /game10/game10/gameclasses/Thing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/gameclasses/Thing.cs -------------------------------------------------------------------------------- /game10/game10/gameclasses/ThingHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/gameclasses/ThingHolder.cs -------------------------------------------------------------------------------- /game10/game10/gameclasses/ThingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game10/game10/gameclasses/ThingList.cs -------------------------------------------------------------------------------- /game2/game2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game2/game2/App.config -------------------------------------------------------------------------------- /game2/game2/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game2/game2/Form1.Designer.cs -------------------------------------------------------------------------------- /game2/game2/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game2/game2/Form1.cs -------------------------------------------------------------------------------- /game2/game2/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game2/game2/Form1.resx -------------------------------------------------------------------------------- /game2/game2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game2/game2/Program.cs -------------------------------------------------------------------------------- /game2/game2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game2/game2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /game2/game2/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game2/game2/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /game2/game2/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game2/game2/Properties/Resources.resx -------------------------------------------------------------------------------- /game2/game2/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game2/game2/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /game2/game2/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game2/game2/Properties/Settings.settings -------------------------------------------------------------------------------- /game2/game2/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game2/game2/Room.cs -------------------------------------------------------------------------------- /game2/game2/game02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game2/game2/game02.csproj -------------------------------------------------------------------------------- /game3/game3/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game3/game3/App.config -------------------------------------------------------------------------------- /game3/game3/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game3/game3/Form1.Designer.cs -------------------------------------------------------------------------------- /game3/game3/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game3/game3/Form1.cs -------------------------------------------------------------------------------- /game3/game3/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game3/game3/Form1.resx -------------------------------------------------------------------------------- /game3/game3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game3/game3/Program.cs -------------------------------------------------------------------------------- /game3/game3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game3/game3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /game3/game3/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game3/game3/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /game3/game3/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game3/game3/Properties/Resources.resx -------------------------------------------------------------------------------- /game3/game3/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game3/game3/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /game3/game3/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game3/game3/Properties/Settings.settings -------------------------------------------------------------------------------- /game3/game3/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game3/game3/Room.cs -------------------------------------------------------------------------------- /game3/game3/game03.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game3/game3/game03.csproj -------------------------------------------------------------------------------- /game4/game4/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game4/game4/App.config -------------------------------------------------------------------------------- /game4/game4/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game4/game4/Form1.Designer.cs -------------------------------------------------------------------------------- /game4/game4/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game4/game4/Form1.cs -------------------------------------------------------------------------------- /game4/game4/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game4/game4/Form1.resx -------------------------------------------------------------------------------- /game4/game4/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game4/game4/Program.cs -------------------------------------------------------------------------------- /game4/game4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game4/game4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /game4/game4/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game4/game4/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /game4/game4/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game4/game4/Properties/Resources.resx -------------------------------------------------------------------------------- /game4/game4/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game4/game4/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /game4/game4/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game4/game4/Properties/Settings.settings -------------------------------------------------------------------------------- /game4/game4/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game4/game4/Room.cs -------------------------------------------------------------------------------- /game4/game4/game04.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game4/game4/game04.csproj -------------------------------------------------------------------------------- /game5/game5/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/App.config -------------------------------------------------------------------------------- /game5/game5/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/Form1.Designer.cs -------------------------------------------------------------------------------- /game5/game5/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/Form1.cs -------------------------------------------------------------------------------- /game5/game5/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/Form1.resx -------------------------------------------------------------------------------- /game5/game5/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/Program.cs -------------------------------------------------------------------------------- /game5/game5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /game5/game5/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /game5/game5/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/Properties/Resources.resx -------------------------------------------------------------------------------- /game5/game5/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /game5/game5/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/Properties/Settings.settings -------------------------------------------------------------------------------- /game5/game5/game05.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/game05.csproj -------------------------------------------------------------------------------- /game5/game5/gameclasses/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/gameclasses/Actor.cs -------------------------------------------------------------------------------- /game5/game5/gameclasses/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/gameclasses/Room.cs -------------------------------------------------------------------------------- /game5/game5/gameclasses/Thing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game5/game5/gameclasses/Thing.cs -------------------------------------------------------------------------------- /game6/game6/AdvConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/AdvConsts.cs -------------------------------------------------------------------------------- /game6/game6/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/App.config -------------------------------------------------------------------------------- /game6/game6/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/Form1.Designer.cs -------------------------------------------------------------------------------- /game6/game6/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/Form1.cs -------------------------------------------------------------------------------- /game6/game6/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/Form1.resx -------------------------------------------------------------------------------- /game6/game6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/Program.cs -------------------------------------------------------------------------------- /game6/game6/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /game6/game6/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /game6/game6/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/Properties/Resources.resx -------------------------------------------------------------------------------- /game6/game6/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /game6/game6/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/Properties/Settings.settings -------------------------------------------------------------------------------- /game6/game6/game06.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/game06.csproj -------------------------------------------------------------------------------- /game6/game6/gameclasses/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/gameclasses/Actor.cs -------------------------------------------------------------------------------- /game6/game6/gameclasses/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/gameclasses/Room.cs -------------------------------------------------------------------------------- /game6/game6/gameclasses/RoomList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/gameclasses/RoomList.cs -------------------------------------------------------------------------------- /game6/game6/gameclasses/Thing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game6/game6/gameclasses/Thing.cs -------------------------------------------------------------------------------- /game7/game7/AdvConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/AdvConsts.cs -------------------------------------------------------------------------------- /game7/game7/Adventure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/Adventure.cs -------------------------------------------------------------------------------- /game7/game7/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/App.config -------------------------------------------------------------------------------- /game7/game7/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/Form1.Designer.cs -------------------------------------------------------------------------------- /game7/game7/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/Form1.cs -------------------------------------------------------------------------------- /game7/game7/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/Form1.resx -------------------------------------------------------------------------------- /game7/game7/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/Program.cs -------------------------------------------------------------------------------- /game7/game7/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /game7/game7/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /game7/game7/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/Properties/Resources.resx -------------------------------------------------------------------------------- /game7/game7/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /game7/game7/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/Properties/Settings.settings -------------------------------------------------------------------------------- /game7/game7/game07.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/game07.csproj -------------------------------------------------------------------------------- /game7/game7/gameclasses/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/gameclasses/Actor.cs -------------------------------------------------------------------------------- /game7/game7/gameclasses/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/gameclasses/Room.cs -------------------------------------------------------------------------------- /game7/game7/gameclasses/RoomList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/gameclasses/RoomList.cs -------------------------------------------------------------------------------- /game7/game7/gameclasses/Thing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game7/game7/gameclasses/Thing.cs -------------------------------------------------------------------------------- /game8/game8/AdvConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/AdvConsts.cs -------------------------------------------------------------------------------- /game8/game8/Adventure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/Adventure.cs -------------------------------------------------------------------------------- /game8/game8/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/App.config -------------------------------------------------------------------------------- /game8/game8/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/Form1.Designer.cs -------------------------------------------------------------------------------- /game8/game8/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/Form1.cs -------------------------------------------------------------------------------- /game8/game8/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/Form1.resx -------------------------------------------------------------------------------- /game8/game8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/Program.cs -------------------------------------------------------------------------------- /game8/game8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /game8/game8/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /game8/game8/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/Properties/Resources.resx -------------------------------------------------------------------------------- /game8/game8/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /game8/game8/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/Properties/Settings.settings -------------------------------------------------------------------------------- /game8/game8/game08.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/game08.csproj -------------------------------------------------------------------------------- /game8/game8/gameclasses/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/gameclasses/Actor.cs -------------------------------------------------------------------------------- /game8/game8/gameclasses/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/gameclasses/Room.cs -------------------------------------------------------------------------------- /game8/game8/gameclasses/RoomList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/gameclasses/RoomList.cs -------------------------------------------------------------------------------- /game8/game8/gameclasses/Thing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game8/game8/gameclasses/Thing.cs -------------------------------------------------------------------------------- /game9/game9/AdvConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/AdvConsts.cs -------------------------------------------------------------------------------- /game9/game9/Adventure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/Adventure.cs -------------------------------------------------------------------------------- /game9/game9/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/App.config -------------------------------------------------------------------------------- /game9/game9/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/Form1.Designer.cs -------------------------------------------------------------------------------- /game9/game9/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/Form1.cs -------------------------------------------------------------------------------- /game9/game9/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/Form1.resx -------------------------------------------------------------------------------- /game9/game9/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/Program.cs -------------------------------------------------------------------------------- /game9/game9/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /game9/game9/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /game9/game9/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/Properties/Resources.resx -------------------------------------------------------------------------------- /game9/game9/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /game9/game9/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/Properties/Settings.settings -------------------------------------------------------------------------------- /game9/game9/game09.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/game09.csproj -------------------------------------------------------------------------------- /game9/game9/gameclasses/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/gameclasses/Actor.cs -------------------------------------------------------------------------------- /game9/game9/gameclasses/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/gameclasses/Room.cs -------------------------------------------------------------------------------- /game9/game9/gameclasses/RoomList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/gameclasses/RoomList.cs -------------------------------------------------------------------------------- /game9/game9/gameclasses/Thing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/gameclasses/Thing.cs -------------------------------------------------------------------------------- /game9/game9/gameclasses/ThingHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/gameclasses/ThingHolder.cs -------------------------------------------------------------------------------- /game9/game9/gameclasses/ThingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/CSharpAdventureGames/HEAD/game9/game9/gameclasses/ThingList.cs --------------------------------------------------------------------------------