2024-05-19 15:59:41 +00:00
|
|
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System;
|
|
|
|
using Godot;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Rokojori
|
|
|
|
{
|
|
|
|
public class TimeLineSpan
|
|
|
|
{
|
|
|
|
public static int Start = 0;
|
|
|
|
public static int InSpan = 1;
|
|
|
|
public static int End = 2;
|
|
|
|
public static int CompletelyInside = 3;
|
|
|
|
|
|
|
|
public long id;
|
|
|
|
public bool persistent;
|
|
|
|
public double start;
|
|
|
|
public double end;
|
2025-01-03 12:09:23 +00:00
|
|
|
public bool wasInside = false;
|
2024-05-19 15:59:41 +00:00
|
|
|
}
|
|
|
|
}
|