예제 #1
0
 /// <summary>
 /// Removes this input platform from the platform list. Shouldn't be used unless writing your own input backend.
 /// </summary>
 /// <param name="platform">The platform to remove.</param>
 public static void Remove(IInputPlatform platform) => _platforms.Remove(platform);
예제 #2
0
 /// <summary>
 /// Adds this input platform to the platform list. Shouldn't be used unless writing your own input backend.
 /// </summary>
 /// <param name="platform">The platform to add.</param>
 public static void Add(IInputPlatform platform) => _platforms.Add(platform);