9 lines
191 B
C#
9 lines
191 B
C#
namespace Sand.Core;
|
|
|
|
public interface IParticleLibrary
|
|
{
|
|
IReadOnlyList<ParticleDef> Definitions { get; }
|
|
ushort GetTypeId(string id);
|
|
ParticleDef GetDefinition(ushort typeId);
|
|
}
|