19 lines
258 B
C#
19 lines
258 B
C#
|
|
||
|
using Godot;
|
||
|
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
[GlobalClass]
|
||
|
public partial class OnReady : Node
|
||
|
{
|
||
|
[Export]
|
||
|
public RJAction action;
|
||
|
|
||
|
public override void _Ready()
|
||
|
{
|
||
|
RJLog.Log( "OnReady" );
|
||
|
Actions.Trigger( action );
|
||
|
}
|
||
|
}
|
||
|
}
|