13 lines
280 B
C#
13 lines
280 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.UIElements;
|
||
|
using BITKit;
|
||
|
namespace BITKit.UX
|
||
|
{
|
||
|
public class OnTranslateEvent : EventBase<OnTranslateEvent>
|
||
|
{
|
||
|
public string source;
|
||
|
public string text;
|
||
|
}
|
||
|
}
|