Build 0.20.4.0
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
namespace Microsoft.Xna.Framework
|
||||
{
|
||||
public sealed class TextEditingEventArgs : EventArgs
|
||||
{
|
||||
public readonly string Text;
|
||||
public readonly int Start;
|
||||
public readonly int Length;
|
||||
|
||||
public TextEditingEventArgs(string text, int start, int length)
|
||||
{
|
||||
Text = text;
|
||||
Start = start;
|
||||
Length = length;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user