11 lines
209 B
C#
11 lines
209 B
C#
using Godot;
|
|
|
|
namespace Newlon.Components;
|
|
|
|
public partial class EntitySignalContext : RefCounted
|
|
{
|
|
public Node source;
|
|
public Entity target;
|
|
public float actionAmount;
|
|
public float deltaHP;
|
|
}
|