mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
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";
|
|
}
|
|
}
|
|
}
|