コード例 #1
0
    // Start is called before the first frame update
    void Start()
    {
        IQuestObjective qo = new CollectionObjective("Gather", 10, item, "Gather 10 meath!", false);

        Debug.Log(qo.ToString());
    }
コード例 #2
0
ファイル: Test.cs プロジェクト: JherryCan/QuestingSystem
    // Use this for initialization
    void Start()
    {
        IQuestObjective qo = new CollectionObjective("Gather", 10, item, "Gather 10 meat!");

        print(qo.ToString());
    }