15 lines
244 B
C#
15 lines
244 B
C#
![]() |
using Godot;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using Godot.Collections;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
[GlobalClass,Tool]
|
||
|
public partial class Eatable:Node
|
||
|
{
|
||
|
[Export]
|
||
|
public Action onGotEaten;
|
||
|
|
||
|
}
|
||
|
}
|