17 lines
330 B
C#
17 lines
330 B
C#
|
|
using System.Collections.Generic;
|
|
|
|
namespace Invector.DefineSymbolsManager
|
|
{
|
|
public class MeleeDefineSymbols : InvectorDefineSymbols
|
|
{
|
|
public override List<string> GetSymbols
|
|
{
|
|
get
|
|
{
|
|
return new List<string>() { "INVECTOR_MELEE" };
|
|
}
|
|
}
|
|
}
|
|
}
|