mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-05-22 05:34:36 +00:00
13 lines
255 B
C#
13 lines
255 B
C#
namespace WeaveLoader.API.Loot;
|
|
|
|
public sealed class LootTableBuilder
|
|
{
|
|
internal List<LootPool> Pools { get; } = new();
|
|
|
|
public LootTableBuilder pool(LootPool.Builder builder)
|
|
{
|
|
Pools.Add(builder.Build());
|
|
return this;
|
|
}
|
|
}
|