Advertisement
dronkowitz

QuestLog.cs

Nov 4th, 2022
674
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5.  
  6. public abstract class QuestLog
  7. {
  8.     public string objectives, walkThrough;
  9.     public string initialDialogue, intermediateDialogue, rewardDialogue;
  10.     public string description;
  11.     public int moneyReward;
  12.     public int experienceReward;
  13.     //item Reward
  14.     public int questID;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement