24 lines
442 B
C#
24 lines
442 B
C#
|
|
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;
|
|
public bool wasInside;
|
|
}
|
|
} |