16 lines
206 B
C#
16 lines
206 B
C#
using System;
|
|
|
|
namespace Server.Spells
|
|
{
|
|
public enum SpellCircle
|
|
{
|
|
First,
|
|
Second,
|
|
Third,
|
|
Fourth,
|
|
Fifth,
|
|
Sixth,
|
|
Seventh,
|
|
Eighth
|
|
}
|
|
} |