Creature Mod Tutorial 1 - "Creating a Mod"

In this tutorial we're going to learn how to create our very own mod for 'Don't Starve'.  Mods are a way for players to add their own content to the game.  Creating a mod is really easy.  All we need is two files and a folder and we're good to go.  Let's get started!

	* Step 1 - Creating a Mod Folder
	The very first thing we need to do is create a folder where our mod is going to live.  You can do this by browsing to your 'Don't Starve' directory and inside of this, there should already be a 'mods' folder.  Now create a new folder in the 'mods' directory and give it a name representative of your mod.

	* Step 2 - Creating 'modinfo.lua'
	For the next step, we need to setup a description for this mod.  We do that by adding a file to our mod folder you need to create a file in your mod folder called 'modinfo.lua'.  The easiest way to create this file is to copy it from another mod such as the one found in this tutorial.  Once you've copied 'modinfo.lua' into your mod folder, open it with any text editor and fill out all the information about your mod.  This info will show up in the 'mods' menu next time you restart the game.

	* Step 3 - Creating 'modmain.lua'
	For the final step, we need to create a file called 'modmain.lua'.  For this tutorial, we're going to leave this file empty but in future tutorials, we'll see how this file is used to hook your mod into the game.

And that's it!  Now next time you restart the game, you should see your mod listed when clicking on the 'mods' menu on the right side of the main menu.  Our mod doesn't do anything interesting just yet but we'll get to that in the next tutorial.