added meta attribute set

This commit is contained in:
2026-05-02 16:45:27 +02:00
parent 852f265b9f
commit 631935fdc8
5 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using Gamesmiths.Forge.Attributes;
namespace Movementtests.scenes.enemies;
public class MetaAttributeSet : AttributeSet
{
public EntityAttribute IncomingDamage { get; private set; }
public MetaAttributeSet()
{
IncomingDamage = InitializeAttribute(nameof(IncomingDamage), 0, 0, 1000, channels: 2);
}
}