sandpypi/Sand.Core/IParticleLibrary.cs

9 lines
191 B
C#

namespace Sand.Core;
public interface IParticleLibrary
{
IReadOnlyList<ParticleDef> Definitions { get; }
ushort GetTypeId(string id);
ParticleDef GetDefinition(ushort typeId);
}