NoSoliciting/NoSoliciting.Interface/Interface.cs
Anna Clemens 1487863c19
fix: make plugin work on stock Dalamud
Use some horrible, cursed AppDomain shit to load dependencies that break on normal Dalamud in their own environment, then do classification there instead.
2020-12-23 03:52:19 -05:00

8 lines
177 B
C#

namespace NoSoliciting.Interface {
public interface IClassifier {
void Initialise(byte[] data);
string Classify(ushort channel, string message);
}
}