12 lines
159 B
C#
12 lines
159 B
C#
namespace Pilz.Plugins;
|
|
|
|
public enum PluginLoadStatus
|
|
{
|
|
None,
|
|
Success,
|
|
AlreadyLoaded,
|
|
ErrorAtLoading,
|
|
FileNotFound,
|
|
NoValidPlugin
|
|
}
|