c6713f37bb
- Removed LocalizationServices and other sus things. - Rewrote AssemblyLoader [In Progress] SafeStorageService [In Progress] LuaScriptLoader
12 lines
314 B
C#
12 lines
314 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Barotrauma.LuaCs.Services;
|
|
|
|
namespace Barotrauma.LuaCs.Configuration;
|
|
|
|
public interface IConfigList<T> : IConfigEntry<T>, INetworkSyncEntity where T : IEquatable<T>
|
|
{
|
|
IReadOnlyList<T> Options { get; }
|
|
new event Action<IConfigList<T>> OnValueChanged;
|
|
}
|