public static LogHandler getInstance(EveryTime plugin) { if (instance == null) { instance = new LogHandler(plugin); } return(instance); }
public GetRankListCommand(EveryTime plugin) { this.plugin = plugin; }
public TestEventHandler(EveryTime everyTime) { this.everyTime = everyTime; }
public LogHandler(EveryTime plugin) { this.plugin = plugin; loadLogfile(); }
public static bool userHasData(string steamId, EveryTime plugin) { XDocument logFile = XDocument.Load(plugin.logFileLocation); return(logFile.Element("Users").Elements("User").Attributes("steamId").Any(att => att.Value == steamId)); }
public EventHandler(EveryTime plugin) { this.plugin = plugin; plugin.onlinePlayerList = new List <PlayerData> { }; }
public ResetPlayTimeCommand(EveryTime plugin) { this.plugin = plugin; }
public RemovePlayTimeCommand(EveryTime everyTime) { this.everyTime = everyTime; }
public GetTopCommand(EveryTime plugin) { this.plugin = plugin; }