This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///<summary> | |
/// Contains functions to load text files as common collections. | |
///</summary> | |
public class IOHelper | |
{ | |
#region Text IO | |
/// <summary> | |
/// Attempts to load in a dictionary from a basic text file. | |
/// </summary> | |
/// <typeparam name="TKey">The type of the key.</typeparam> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region File Description | |
//----------------------------------------------------------------------------- | |
// UserInput.cs | |
// | |
// Author: Devin Kelly-Collins | |
// | |
// Kansas State Univerisity CIS 580 Fall 2012 Dungeon Crawler Game | |
// Copyright (C) CIS 580 Fall 2012 Class. All rights reserved. | |
// Released under the Microsoft Permissive Licence | |
//----------------------------------------------------------------------------- |
NewerOlder