Cleanup for EventData.

This commit is contained in:
2020-08-14 16:15:19 +02:00
parent 504bee3bda
commit 00cfd3c469
36 changed files with 281 additions and 112 deletions

View File

@@ -1,6 +1,8 @@
using System;
using System.Reflection;
using System.Runtime.InteropServices;
using NUnit.Framework;
using PkmnLibSharp.Battling;
namespace PkmnLibSharpTests
{
@@ -13,6 +15,11 @@ namespace PkmnLibSharpTests
NativeLibrary.Load("Arbutils", Assembly.GetCallingAssembly(), DllImportSearchPath.AssemblyDirectory);
NativeLibrary.Load("CreatureLib", Assembly.GetCallingAssembly(), DllImportSearchPath.AssemblyDirectory);
NativeLibrary.Load("pkmnLib", Assembly.GetCallingAssembly(), DllImportSearchPath.AssemblyDirectory);
LogHandler.RegisterListener((level, s) =>
{
Console.WriteLine($"[{level.ToString().ToUpperInvariant()}] {s}");
});
}
}
}