mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-05-22 05:34:36 +00:00
12 lines
168 B
C#
12 lines
168 B
C#
namespace WeaveLoader.API.Loot;
|
|
|
|
/// <summary>
|
|
/// Origin of a loot table.
|
|
/// </summary>
|
|
public enum LootTableSource
|
|
{
|
|
Vanilla = 0,
|
|
Mod = 1,
|
|
BuiltIn = 2
|
|
}
|