/*
Name		:	Object - Game
Author/s	:	Yang Wong
Related		:
*/

// CLASS //

var COM_CIPHERCITIES_GAME = Class.create();
COM_CIPHERCITIES_GAME.prototype =
{

	// CONSTRUCTOR //

	initialize: function()
	{
		// PROPERTIES //
		this.title				= null;
		this.image				= null;
		this.description		= null;
		this.countryID			= null;
		this.location			= null;
		this.latitude			= null;
		this.longitude			= null;
		this.zoom				= null;
		this.tags				= new Array();
		this.categories			= new Array();
		this.inviteOnly			= null;
		this.limitedTime		= null;
		this.startDay			= null;
		this.startMonth			= null;
		this.startYear			= null;
		this.startMinute		= null;
		this.startHour			= null;
		this.endDay				= null;
		this.endMonth			= null;
		this.endYear			= null;
		this.endMinute			= null;
		this.endHour			= null;
		this.minTeamMem			= null;
		this.maxTeamMem			= null;
		this.gameEquipment		= null;
		this.gameInstructions	= null;
		this.links				= new Array();
		this.checkpoints		= new Array();
		this.completionMessage	= null;

		// REFERENCES //
		this.step				= COM_CIPHERCITIES_GLOBALS.TE_GAMEBUILDER_SECTION_DESCRIBE;
		this.gameID				= null;
		this.storedImage		= null;
		this.clearStored		= null;
		this.live				= null;
	}

}
