mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 23:34:10 +02:00
25 lines
371 B
Beef
25 lines
371 B
Beef
![]() |
using System;
|
||
|
using System.Collections.Generic;
|
||
|
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()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|