2025-01-21 20:58:56 +00:00
|
|
|
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System;
|
|
|
|
|
using Godot;
|
|
|
|
|
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
2025-01-21 20:58:56 +00:00
|
|
|
namespace Rokojori
|
|
|
|
|
{
|
2026-05-22 12:25:02 +00:00
|
|
|
public class TimelineCallback
|
2025-01-21 20:58:56 +00:00
|
|
|
{
|
|
|
|
|
public int id;
|
|
|
|
|
public bool done;
|
2026-05-22 12:25:02 +00:00
|
|
|
public Timeline timeLine;
|
|
|
|
|
public System.Action<TimelineCallback> callback;
|
2025-01-21 20:58:56 +00:00
|
|
|
}
|
|
|
|
|
}
|