7a6dccc26a
Remove IW5 parser Begin implementation of dynamic parsers
15 lines
285 B
C#
15 lines
285 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace IW4MAdmin.Application.EventParsers
|
|
{
|
|
class IW3EventParser : IW4EventParser
|
|
{
|
|
public IW3EventParser() : base()
|
|
{
|
|
Configuration.GameDirectory = "main";
|
|
}
|
|
}
|
|
}
|