2964fd71b2
event parser has GetGameDir made parsers choosen more dynamically profile shows online/offline status of client
13 lines
258 B
C#
13 lines
258 B
C#
using SharedLibraryCore.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Application.EventParsers
|
|
{
|
|
class IW5EventParser : IW4EventParser
|
|
{
|
|
public override string GetGameDir() => "rzodemo";
|
|
}
|
|
}
|