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