IW4M-Admin/Plugins/MessageBoard/Identifiable.cs
RaidMax 25b3e3abc1 Moved plugins to a seperate folder
Uncapped the search result limit for !find
2017-06-07 19:59:59 -05:00

13 lines
177 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MessageBoard
{
interface Identifiable
{
int getID();
}
}