mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 05:35:41 +12:00
30 lines
697 B
C#
30 lines
697 B
C#
using System;
|
|
using HISP.Server;
|
|
namespace HISP
|
|
{
|
|
public class TrackedQuest
|
|
{
|
|
public TrackedQuest(int playerID, int questID, int timesComplete)
|
|
{
|
|
playerId = playerID;
|
|
QuestId = questID;
|
|
timesCompleted = timesComplete;
|
|
}
|
|
public int QuestId;
|
|
private int playerId;
|
|
public int TimesCompleted
|
|
{
|
|
get
|
|
{
|
|
return timesCompleted;
|
|
}
|
|
set
|
|
{
|
|
Database.SetTrackedQuestCompletedCount(playerId, QuestId, value);
|
|
timesCompleted = value;
|
|
}
|
|
}
|
|
private int timesCompleted;
|
|
|
|
}
|
|
}
|