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