コード例 #1
0
ファイル: JournalManager.cs プロジェクト: pierrce/portfolio
    public void QuestAdded(Quest quest)
    {
        if (debug)
        {
            Debug.Log("JournalManager: A quest has been added to the journal: " + quest.name);
        }

        /* Add this quest to the player journal */
        pages.AddQuest(quest);
    }