52d920d969
- ContentPackageInfoLookup Service completed. - Implemented ModConfigService.cs - Implemented some of the resource processors.
13 lines
324 B
C#
13 lines
324 B
C#
using System;
|
|
using Barotrauma.LuaCs.Services;
|
|
|
|
namespace Barotrauma.LuaCs.Configuration;
|
|
|
|
public interface IConfigEntry<T> : IConfigBase, INetVar where T : IConvertible, IEquatable<T>
|
|
{
|
|
T Value { get; }
|
|
bool TrySetValue(T value);
|
|
bool IsAssignable(T value);
|
|
void Initialize(IVarId id, T defaultValue);
|
|
}
|