mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-05-22 13:44:31 +00:00
21 lines
425 B
C#
21 lines
425 B
C#
namespace WeaveLoader.API;
|
|
|
|
public enum CreativeInsert
|
|
{
|
|
Append = 0,
|
|
Prepend = 1
|
|
}
|
|
|
|
public readonly struct CreativePlacement
|
|
{
|
|
public CreativeInsert Insert { get; }
|
|
|
|
private CreativePlacement(CreativeInsert insert)
|
|
{
|
|
Insert = insert;
|
|
}
|
|
|
|
public static CreativePlacement Append() => new(CreativeInsert.Append);
|
|
public static CreativePlacement Prepend() => new(CreativeInsert.Prepend);
|
|
}
|