example-grass/Eat Da Rich/OnState.cs

20 lines
291 B
C#
Raw Normal View History

2025-07-22 14:08:35 +00:00
using Godot;
using System.Collections;
using System.Collections.Generic;
using Godot.Collections;
namespace Rokojori
{
[GlobalClass,Tool]
public partial class OnState:Node
{
[Export]
public EatDaRichGame.State state;
[Export]
public Action action;
}
}