1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 14:24:10 +02:00
Beef/IDE/src/ui/PersistentTextPosition.bf

24 lines
363 B
Beef

using System;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy.widgets;
namespace IDE.ui
{
public class PersistentTextPosition
{
public int32 mIndex;
public bool mWasDeleted;
public this(int32 index)
{
mIndex = index;
}
public ~this()
{
}
}
}