Quest.cs Class
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ClassLibrary1 | |
{ | |
public class Quest | |
{ | |
public int ID { get; set; } | |
public string Name { get; set; } | |
public string Description { get; set; } | |
public int RewardGold { get; set; } | |
public int RewardExperiencePoints { get; set; } | |
public Quest(int id, string name, string description, int rewardExperiencePoints, int rewardGold); | |
{ | |
ID = id; | |
Name = name; | |
Description = description; | |
RewardExperiencePoints = rewardExperiencePoints; | |
RewardGold = rewardGold; | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment