OpenCS2hock/OpenCS2hock/Program.cs
glax 41a433bf3f Version 3:
CS2GSI and CShocker libraries
More extensive options for Events
Setup on first start
2024-01-18 00:06:39 +01:00

11 lines
254 B
C#

using Microsoft.Extensions.Logging;
namespace OpenCS2hock;
public class Program
{
public static void Main(string[] args)
{
OpenCS2hock openCS2Hock = new OpenCS2hock(editConfig: true, logger: new Logger(LogLevel.Information));
}
}