mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-08-04 00:21:44 +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;
|
|
}
|
|
}
|