Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IImeService.cs
Go to the documentation of this file.
1using System;
2
4
5public interface IImeService
6{
7 string CompositionString { get; }
8
10
11 uint SelectedCandidate { get; }
12
13 uint CandidateCount { get; }
14
15 bool IsEnabled { get; }
16
17 string GetCandidate(uint index);
18
19 void Enable();
20
21 void Disable();
22
23 void AddKeyListener(Action<char> listener);
24
25 void RemoveKeyListener(Action<char> listener);
26}
void AddKeyListener(Action< char > listener)
void RemoveKeyListener(Action< char > listener)