rj-action-library/Runtime/Time/TimeLineEvent.cs

18 lines
286 B
C#

using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using System;
using Godot;
namespace Rokojori
{
public class TimeLineEvent
{
public int id;
public bool persistent;
public float position;
public bool wasInside = false;
}
}