15 lines
235 B
C#
15 lines
235 B
C#
![]() |
using Godot;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using Godot.Collections;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
|
||
|
[GlobalClass]
|
||
|
public partial class Interactable:Node3D
|
||
|
{
|
||
|
[Export]
|
||
|
public Action onInteraction;
|
||
|
}
|
||
|
}
|