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

15 lines
304 B
C#
Raw Normal View History

2025-01-18 12:49:14 +00:00
using Godot;
using System.Collections;
using System.Collections.Generic;
using Godot.Collections;
namespace Rokojori
{
2025-01-21 20:58:56 +00:00
[GlobalClass,Icon("res://addons/rokojori_action_library/Icons/Interactable.svg")]
2025-01-18 12:49:14 +00:00
public partial class Interactable:Node3D
{
[Export]
public Action onInteraction;
}
}