10 lines
102 B
C#
10 lines
102 B
C#
using System;
|
|
|
|
namespace Server.EventSystem
|
|
{
|
|
public enum EventType
|
|
{
|
|
None,
|
|
TownInvasion
|
|
}
|
|
} |