2018-04-13 02:32:30 -04:00
|
|
|
|
using System;
|
2018-04-23 01:43:48 -04:00
|
|
|
|
using System.Collections.Generic;
|
2018-04-15 00:26:27 -04:00
|
|
|
|
using System.IO;
|
2018-04-13 02:32:30 -04:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
using SharedLibraryCore;
|
|
|
|
|
using SharedLibraryCore.Interfaces;
|
|
|
|
|
using SharedLibraryCore.Objects;
|
|
|
|
|
|
2018-04-25 02:38:59 -04:00
|
|
|
|
namespace IW4MAdmin.Application.EventParsers
|
2018-04-13 02:32:30 -04:00
|
|
|
|
{
|
2018-05-11 00:52:20 -04:00
|
|
|
|
class T6MEventParser : IW4EventParser
|
2018-04-13 02:32:30 -04:00
|
|
|
|
{
|
2018-05-11 00:52:20 -04:00
|
|
|
|
public override string GetGameDir() => $"t6r{Path.DirectorySeparatorChar}data";
|
2018-04-13 02:32:30 -04:00
|
|
|
|
}
|
|
|
|
|
}
|