mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
15 lines
283 B
C#
15 lines
283 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace IW4MAdmin.Application.EventParsers
|
|
{
|
|
class T5MEventParser : IW4EventParser
|
|
{
|
|
public T5MEventParser() : base()
|
|
{
|
|
Configuration.GameDirectory = "v2";
|
|
}
|
|
}
|
|
}
|