All Data Structures Files Functions Variables Enumerations Enumerator Properties Defines
/Projects/Cogito/src/Objects/Level.m
Go to the documentation of this file.
00001 //
00002 //  Level.m
00003 //  Author: Thomas Taylor
00004 //
00005 //  Very basic class to hold info about a level
00006 //
00007 //  19/01/2012: Created class
00008 //
00009 
00010 #import "Level.h"
00011 
00012 @implementation Level
00013 
00014 @synthesize name;
00015 @synthesize difficulty;
00016 @synthesize spawnPoint;
00017 @synthesize umbrellaUses;
00018 @synthesize helmetUses;
00019 
00020 @end