mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 12:58:33 +01:00
some MlemPlatform doc clarifications and improvements
This commit is contained in:
parent
e5593f2132
commit
9a480d391b
1 changed files with 4 additions and 8 deletions
|
@ -66,13 +66,11 @@ namespace MLEM.Misc {
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The MLEM DesktopGL platform.
|
/// The MLEM DesktopGL platform.
|
||||||
/// This platform uses the built-in MonoGame TextInput event, which makes this listener work with any keyboard localization natively.
|
/// This platform uses the built-in MonoGame TextInput event, which makes this listener work with any keyboard localization natively.
|
||||||
/// </summary>
|
|
||||||
/// <example>
|
|
||||||
/// This platform is initialized as follows:
|
/// This platform is initialized as follows:
|
||||||
/// <code>
|
/// <code>
|
||||||
/// new MlemPlatform.DesktopGl{TextInputEventArgs}((w, c) => w.TextInput += c)
|
/// MlemPlatform.Current = new MlemPlatform.DesktopGl<TextInputEventArgs>((w, c) => w.TextInput += c);
|
||||||
/// </code>
|
/// </code>
|
||||||
/// </example>
|
/// </summary>
|
||||||
/// <typeparam name="T"></typeparam>
|
/// <typeparam name="T"></typeparam>
|
||||||
public class DesktopGl<T> : MlemPlatform {
|
public class DesktopGl<T> : MlemPlatform {
|
||||||
|
|
||||||
|
@ -116,13 +114,11 @@ namespace MLEM.Misc {
|
||||||
/// The MLEM platform for mobile platforms as well as consoles.
|
/// The MLEM platform for mobile platforms as well as consoles.
|
||||||
/// This platform opens an on-screen keyboard using the <see cref="Microsoft.Xna.Framework.Input"/> <c>KeyboardInput</c> class on mobile devices.
|
/// This platform opens an on-screen keyboard using the <see cref="Microsoft.Xna.Framework.Input"/> <c>KeyboardInput</c> class on mobile devices.
|
||||||
/// Additionally, it starts a new activity whenever <see cref="OpenLinkOrFile"/> is called.
|
/// Additionally, it starts a new activity whenever <see cref="OpenLinkOrFile"/> is called.
|
||||||
/// </summary>
|
|
||||||
/// <example>
|
|
||||||
/// This listener is initialized as follows in the game's <c>Activity</c> class:
|
/// This listener is initialized as follows in the game's <c>Activity</c> class:
|
||||||
/// <code>
|
/// <code>
|
||||||
/// new MlemPlatform.Mobile(KeyboardInput.Show, l => this.StartActivity(new Intent(Intent.ActionView, Uri.Parse(l))))
|
/// MlemPlatform.Current = new MlemPlatform.Mobile(KeyboardInput.Show, l => this.StartActivity(new Intent(Intent.ActionView, Uri.Parse(l))));
|
||||||
/// </code>
|
/// </code>
|
||||||
/// </example>
|
/// </summary>
|
||||||
public class Mobile : MlemPlatform {
|
public class Mobile : MlemPlatform {
|
||||||
|
|
||||||
private readonly OpenOnScreenKeyboardDelegate openOnScreenKeyboard;
|
private readonly OpenOnScreenKeyboardDelegate openOnScreenKeyboard;
|
||||||
|
|
Loading…
Reference in a new issue