C# Class JustPressPlay.Controllers.QuestsController

Inheritance: Controller
Mostra file Open project: RIT-MAGIC/JustPressPlay

Public Methods

Method Description
Index ( ) : System.Web.Mvc.ActionResult

The list of all quests

IndividualQuest ( int id ) : System.Web.Mvc.ActionResult

An individual quest page

QuestPlayer ( int questID, int playerID ) : System.Web.Mvc.ActionResult

A specific quest instance for the specified player

Private Methods

Method Description
Track ( int id ) : System.Boolean
Untrack ( int id ) : System.Boolean

Method Details

Index() public method

The list of all quests
public Index ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult

IndividualQuest() public method

An individual quest page
public IndividualQuest ( int id ) : System.Web.Mvc.ActionResult
id int The id of the quest
return System.Web.Mvc.ActionResult

QuestPlayer() public method

A specific quest instance for the specified player
public QuestPlayer ( int questID, int playerID ) : System.Web.Mvc.ActionResult
questID int The id of the quest
playerID int The id of the player
return System.Web.Mvc.ActionResult