rj-action-library/Runtime/Interactions/Interactable.cs

15 lines
304 B
C#

using Godot;
using System.Collections;
using System.Collections.Generic;
using Godot.Collections;
namespace Rokojori
{
[GlobalClass,Icon("res://addons/rokojori_action_library/Icons/Interactable.svg")]
public partial class Interactable:Node3D
{
[Export]
public Action onInteraction;
}
}