servuo/Scripts/Services/ExploringTheDeep/ExploringTheDeepQuestChain.cs
2017-02-20 15:14:03 +03:00

38 lines
No EOL
775 B
C#

using System;
namespace Server.Engines.Quests
{
public enum ExploringTheDeepQuestChain
{
None,
HeplerPaulson,
HeplerPaulsonComplete,
CusteauPerronHouse,
CusteauPerron,
Sorcerers,
CollectTheComponent,
CollectTheComponentComplete
}
public class ExploringTheDeepBaseChain
{
private Type m_CurrentQuest;
public ExploringTheDeepBaseChain(Type currentQuest, Type quester)
{
this.m_CurrentQuest = currentQuest;
}
public Type CurrentQuest
{
get
{
return this.m_CurrentQuest;
}
set
{
this.m_CurrentQuest = value;
}
}
}
}