IW4M-Admin/Application/EventParsers/IW5EventParser.cs

13 lines
258 B
C#
Raw Normal View History

using SharedLibraryCore.Interfaces;
using System;
using System.Collections.Generic;
using System.Text;
namespace Application.EventParsers
{
class IW5EventParser : IW4EventParser
{
public override string GetGameDir() => "rzodemo";
}
}