2024-09-11 19:12:31 +02:00
|
|
|
namespace MinecraftClient.Protocol.Handlers.StructuredComponents.Components.Subcomponents;
|
|
|
|
|
|
2024-10-05 13:37:52 +02:00
|
|
|
public abstract class SubComponents
|
2024-09-11 19:12:31 +02:00
|
|
|
{
|
|
|
|
|
public const string BlockPredicate = "BlockPredicate";
|
|
|
|
|
public const string BlockSet = "BlockSet";
|
|
|
|
|
public const string Property = "Property";
|
|
|
|
|
public const string Attribute = "Attribute";
|
2024-09-11 20:35:23 +02:00
|
|
|
public const string Effect = "Effect";
|
|
|
|
|
public const string PotionEffect = "PotionEffect";
|
|
|
|
|
public const string Details = "Details";
|
|
|
|
|
public const string Rule = "Rule";
|
2024-10-05 13:37:52 +02:00
|
|
|
public const string FireworkExplosion = "FireworkExplosion";
|
2024-12-06 16:45:48 +01:00
|
|
|
public const string SoundEvent = "SoundEvent";
|
2024-09-11 19:12:31 +02:00
|
|
|
}
|