01cc1d331b
- In progress implementation of services model.
8 lines
157 B
C#
8 lines
157 B
C#
namespace Barotrauma.LuaCs.Services;
|
|
|
|
public interface IPluginManagementService : IService
|
|
{
|
|
bool IsAssemblyLoadedGlobal(string friendlyName);
|
|
|
|
}
|