7a6dccc26a
Remove IW5 parser Begin implementation of dynamic parsers
13 lines
268 B
C#
13 lines
268 B
C#
using System.IO;
|
|
|
|
namespace IW4MAdmin.Application.EventParsers
|
|
{
|
|
class T6MEventParser : IW4EventParser
|
|
{
|
|
public T6MEventParser() : base()
|
|
{
|
|
Configuration.GameDirectory = $"t6r{Path.DirectorySeparatorChar}data";
|
|
}
|
|
}
|
|
}
|