Skip to content

Instantly share code, notes, and snippets.

///<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>
@dkellycollins
dkellycollins / InputHelper.cs
Created January 17, 2013 18:08
A helper class that manages input for XNA games. I tried to make this optimized for any game.
#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
//-----------------------------------------------------------------------------