QuestGUI.QuestGUI C# (CSharp) Method

QuestGUI() public method

Initializes a new instance of the QuestGUI class.
public QuestGUI ( ) : UnityEngine
return UnityEngine
	public QuestGUI(){
		Messenger.AddListener(GameDockGUI.kOnQuestSelector, VisibleEnabler);
		selectorBox.x = Styles.roundDarkBox.margin.left;
		selectorBox.y = Styles.roundDarkBox.margin.top;
		selectorBox.width = 180f;
		selectorBox.height = Screen.height/2;
		detailsBox.x = selectorBox.x + selectorBox.width;
		detailsBox.y = selectorBox.y;
		detailsBox.width = selectorBox.width * 1.8f;
		detailsBox.height = selectorBox.height*0.9f;
		this.visible = false;
	}