01cc1d331b
- In progress implementation of services model.
9 lines
217 B
C#
9 lines
217 B
C#
using Barotrauma.LuaCs.Data;
|
|
|
|
namespace Barotrauma.LuaCs.Services;
|
|
|
|
public interface ILegacyConfigService : IService
|
|
{
|
|
bool TryBuildModConfigFromLegacy(ContentPackage package, out IModConfigInfo configInfo);
|
|
}
|