12 lines
167 B
C#
12 lines
167 B
C#
using System;
|
|
|
|
namespace Server.EventSystem
|
|
{
|
|
public class EventConfig
|
|
{
|
|
public static Type[] EnabledEvents = new Type[]
|
|
{
|
|
typeof( TownInvasion )
|
|
};
|
|
}
|
|
} |