mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-14 10:09:09 +01:00
739 lines
24 KiB
YAML
739 lines
24 KiB
YAML
|
### YamlMime:ManagedReference
|
||
|
items:
|
||
|
- uid: MLEM.Input.KeysExtensions
|
||
|
commentId: T:MLEM.Input.KeysExtensions
|
||
|
id: KeysExtensions
|
||
|
parent: MLEM.Input
|
||
|
children:
|
||
|
- MLEM.Input.KeysExtensions.GetKeys(MLEM.Input.ModifierKey)
|
||
|
- MLEM.Input.KeysExtensions.GetModifier(MLEM.Input.GenericInput)
|
||
|
- MLEM.Input.KeysExtensions.GetModifier(Microsoft.Xna.Framework.Input.Keys)
|
||
|
- MLEM.Input.KeysExtensions.IsModifier(MLEM.Input.GenericInput)
|
||
|
- MLEM.Input.KeysExtensions.IsModifier(Microsoft.Xna.Framework.Input.Keys)
|
||
|
- MLEM.Input.KeysExtensions.ModifierKeys
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: KeysExtensions
|
||
|
nameWithType: KeysExtensions
|
||
|
fullName: MLEM.Input.KeysExtensions
|
||
|
type: Class
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM/Input/KeysExtensions.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: KeysExtensions
|
||
|
path: ../MLEM/Input/KeysExtensions.cs
|
||
|
startLine: 8
|
||
|
assemblies:
|
||
|
- MLEM
|
||
|
namespace: MLEM.Input
|
||
|
summary: A set of extension methods for dealing with <xref href="Microsoft.Xna.Framework.Input.Keys" data-throw-if-not-resolved="false"></xref> and <xref href="Microsoft.Xna.Framework.Input.Keyboard" data-throw-if-not-resolved="false"></xref>
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public static class KeysExtensions
|
||
|
content.vb: Public Module KeysExtensions
|
||
|
inheritance:
|
||
|
- System.Object
|
||
|
inheritedMembers:
|
||
|
- System.Object.ToString
|
||
|
- System.Object.Equals(System.Object)
|
||
|
- System.Object.Equals(System.Object,System.Object)
|
||
|
- System.Object.ReferenceEquals(System.Object,System.Object)
|
||
|
- System.Object.GetHashCode
|
||
|
- System.Object.GetType
|
||
|
- System.Object.MemberwiseClone
|
||
|
- uid: MLEM.Input.KeysExtensions.ModifierKeys
|
||
|
commentId: F:MLEM.Input.KeysExtensions.ModifierKeys
|
||
|
id: ModifierKeys
|
||
|
parent: MLEM.Input.KeysExtensions
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: ModifierKeys
|
||
|
nameWithType: KeysExtensions.ModifierKeys
|
||
|
fullName: MLEM.Input.KeysExtensions.ModifierKeys
|
||
|
type: Field
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM/Input/KeysExtensions.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: ModifierKeys
|
||
|
path: ../MLEM/Input/KeysExtensions.cs
|
||
|
startLine: 13
|
||
|
assemblies:
|
||
|
- MLEM
|
||
|
namespace: MLEM.Input
|
||
|
summary: All enum values of <xref href="MLEM.Input.ModifierKey" data-throw-if-not-resolved="false"></xref>
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public static readonly ModifierKey[] ModifierKeys
|
||
|
return:
|
||
|
type: MLEM.Input.ModifierKey[]
|
||
|
content.vb: Public Shared ReadOnly ModifierKeys As ModifierKey()
|
||
|
- uid: MLEM.Input.KeysExtensions.GetKeys(MLEM.Input.ModifierKey)
|
||
|
commentId: M:MLEM.Input.KeysExtensions.GetKeys(MLEM.Input.ModifierKey)
|
||
|
id: GetKeys(MLEM.Input.ModifierKey)
|
||
|
isExtensionMethod: true
|
||
|
parent: MLEM.Input.KeysExtensions
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: GetKeys(ModifierKey)
|
||
|
nameWithType: KeysExtensions.GetKeys(ModifierKey)
|
||
|
fullName: MLEM.Input.KeysExtensions.GetKeys(MLEM.Input.ModifierKey)
|
||
|
type: Method
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM/Input/KeysExtensions.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: GetKeys
|
||
|
path: ../MLEM/Input/KeysExtensions.cs
|
||
|
startLine: 28
|
||
|
assemblies:
|
||
|
- MLEM
|
||
|
namespace: MLEM.Input
|
||
|
summary: Returns all of the keys that the given modifier key represents
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public static IEnumerable<Keys> GetKeys(this ModifierKey modifier)
|
||
|
parameters:
|
||
|
- id: modifier
|
||
|
type: MLEM.Input.ModifierKey
|
||
|
description: The modifier key
|
||
|
return:
|
||
|
type: System.Collections.Generic.IEnumerable{Microsoft.Xna.Framework.Input.Keys}
|
||
|
description: All of the keys the modifier key represents
|
||
|
content.vb: Public Shared Function GetKeys(modifier As ModifierKey) As IEnumerable(Of Keys)
|
||
|
overload: MLEM.Input.KeysExtensions.GetKeys*
|
||
|
- uid: MLEM.Input.KeysExtensions.GetModifier(Microsoft.Xna.Framework.Input.Keys)
|
||
|
commentId: M:MLEM.Input.KeysExtensions.GetModifier(Microsoft.Xna.Framework.Input.Keys)
|
||
|
id: GetModifier(Microsoft.Xna.Framework.Input.Keys)
|
||
|
isExtensionMethod: true
|
||
|
parent: MLEM.Input.KeysExtensions
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: GetModifier(Keys)
|
||
|
nameWithType: KeysExtensions.GetModifier(Keys)
|
||
|
fullName: MLEM.Input.KeysExtensions.GetModifier(Microsoft.Xna.Framework.Input.Keys)
|
||
|
type: Method
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM/Input/KeysExtensions.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: GetModifier
|
||
|
path: ../MLEM/Input/KeysExtensions.cs
|
||
|
startLine: 38
|
||
|
assemblies:
|
||
|
- MLEM
|
||
|
namespace: MLEM.Input
|
||
|
summary: >-
|
||
|
Returns the modifier key that the given key represents.
|
||
|
|
||
|
If there is no matching modifier key, <xref href="MLEM.Input.ModifierKey.None" data-throw-if-not-resolved="false"></xref> is returned.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public static ModifierKey GetModifier(this Keys key)
|
||
|
parameters:
|
||
|
- id: key
|
||
|
type: Microsoft.Xna.Framework.Input.Keys
|
||
|
description: The key to convert to a modifier key
|
||
|
return:
|
||
|
type: MLEM.Input.ModifierKey
|
||
|
description: The modifier key, or <xref href="MLEM.Input.ModifierKey.None" data-throw-if-not-resolved="false"></xref>
|
||
|
content.vb: Public Shared Function GetModifier(key As Keys) As ModifierKey
|
||
|
overload: MLEM.Input.KeysExtensions.GetModifier*
|
||
|
- uid: MLEM.Input.KeysExtensions.GetModifier(MLEM.Input.GenericInput)
|
||
|
commentId: M:MLEM.Input.KeysExtensions.GetModifier(MLEM.Input.GenericInput)
|
||
|
id: GetModifier(MLEM.Input.GenericInput)
|
||
|
isExtensionMethod: true
|
||
|
parent: MLEM.Input.KeysExtensions
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: GetModifier(GenericInput)
|
||
|
nameWithType: KeysExtensions.GetModifier(GenericInput)
|
||
|
fullName: MLEM.Input.KeysExtensions.GetModifier(MLEM.Input.GenericInput)
|
||
|
type: Method
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM/Input/KeysExtensions.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: GetModifier
|
||
|
path: ../MLEM/Input/KeysExtensions.cs
|
||
|
startLine: 43
|
||
|
assemblies:
|
||
|
- MLEM
|
||
|
namespace: MLEM.Input
|
||
|
summary: >-
|
||
|
Returns the modifier key that the given key represents.
|
||
|
|
||
|
If there is no matching modifier key, <xref href="MLEM.Input.ModifierKey.None" data-throw-if-not-resolved="false"></xref> is returned.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public static ModifierKey GetModifier(this GenericInput input)
|
||
|
parameters:
|
||
|
- id: input
|
||
|
type: MLEM.Input.GenericInput
|
||
|
return:
|
||
|
type: MLEM.Input.ModifierKey
|
||
|
description: The modifier key, or <xref href="MLEM.Input.ModifierKey.None" data-throw-if-not-resolved="false"></xref>
|
||
|
content.vb: Public Shared Function GetModifier(input As GenericInput) As ModifierKey
|
||
|
overload: MLEM.Input.KeysExtensions.GetModifier*
|
||
|
- uid: MLEM.Input.KeysExtensions.IsModifier(Microsoft.Xna.Framework.Input.Keys)
|
||
|
commentId: M:MLEM.Input.KeysExtensions.IsModifier(Microsoft.Xna.Framework.Input.Keys)
|
||
|
id: IsModifier(Microsoft.Xna.Framework.Input.Keys)
|
||
|
isExtensionMethod: true
|
||
|
parent: MLEM.Input.KeysExtensions
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: IsModifier(Keys)
|
||
|
nameWithType: KeysExtensions.IsModifier(Keys)
|
||
|
fullName: MLEM.Input.KeysExtensions.IsModifier(Microsoft.Xna.Framework.Input.Keys)
|
||
|
type: Method
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM/Input/KeysExtensions.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: IsModifier
|
||
|
path: ../MLEM/Input/KeysExtensions.cs
|
||
|
startLine: 52
|
||
|
assemblies:
|
||
|
- MLEM
|
||
|
namespace: MLEM.Input
|
||
|
summary: Returns whether the given key is a modifier key or not.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public static bool IsModifier(this Keys key)
|
||
|
parameters:
|
||
|
- id: key
|
||
|
type: Microsoft.Xna.Framework.Input.Keys
|
||
|
description: The key
|
||
|
return:
|
||
|
type: System.Boolean
|
||
|
description: If the key is a modifier key
|
||
|
content.vb: Public Shared Function IsModifier(key As Keys) As Boolean
|
||
|
overload: MLEM.Input.KeysExtensions.IsModifier*
|
||
|
- uid: MLEM.Input.KeysExtensions.IsModifier(MLEM.Input.GenericInput)
|
||
|
commentId: M:MLEM.Input.KeysExtensions.IsModifier(MLEM.Input.GenericInput)
|
||
|
id: IsModifier(MLEM.Input.GenericInput)
|
||
|
isExtensionMethod: true
|
||
|
parent: MLEM.Input.KeysExtensions
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: IsModifier(GenericInput)
|
||
|
nameWithType: KeysExtensions.IsModifier(GenericInput)
|
||
|
fullName: MLEM.Input.KeysExtensions.IsModifier(MLEM.Input.GenericInput)
|
||
|
type: Method
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM/Input/KeysExtensions.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: IsModifier
|
||
|
path: ../MLEM/Input/KeysExtensions.cs
|
||
|
startLine: 57
|
||
|
assemblies:
|
||
|
- MLEM
|
||
|
namespace: MLEM.Input
|
||
|
summary: Returns whether the given key is a modifier key or not.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public static bool IsModifier(this GenericInput input)
|
||
|
parameters:
|
||
|
- id: input
|
||
|
type: MLEM.Input.GenericInput
|
||
|
return:
|
||
|
type: System.Boolean
|
||
|
description: If the key is a modifier key
|
||
|
content.vb: Public Shared Function IsModifier(input As GenericInput) As Boolean
|
||
|
overload: MLEM.Input.KeysExtensions.IsModifier*
|
||
|
references:
|
||
|
- uid: Microsoft.Xna.Framework.Input.Keys
|
||
|
commentId: T:Microsoft.Xna.Framework.Input.Keys
|
||
|
parent: Microsoft.Xna.Framework.Input
|
||
|
isExternal: true
|
||
|
name: Keys
|
||
|
nameWithType: Keys
|
||
|
fullName: Microsoft.Xna.Framework.Input.Keys
|
||
|
- uid: Microsoft.Xna.Framework.Input.Keyboard
|
||
|
commentId: T:Microsoft.Xna.Framework.Input.Keyboard
|
||
|
isExternal: true
|
||
|
name: Keyboard
|
||
|
nameWithType: Keyboard
|
||
|
fullName: Microsoft.Xna.Framework.Input.Keyboard
|
||
|
- uid: MLEM.Input
|
||
|
commentId: N:MLEM.Input
|
||
|
href: MLEM.html
|
||
|
name: MLEM.Input
|
||
|
nameWithType: MLEM.Input
|
||
|
fullName: MLEM.Input
|
||
|
spec.csharp:
|
||
|
- uid: MLEM
|
||
|
name: MLEM
|
||
|
href: MLEM.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Input
|
||
|
name: Input
|
||
|
href: MLEM.Input.html
|
||
|
spec.vb:
|
||
|
- uid: MLEM
|
||
|
name: MLEM
|
||
|
href: MLEM.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Input
|
||
|
name: Input
|
||
|
href: MLEM.Input.html
|
||
|
- uid: System.Object
|
||
|
commentId: T:System.Object
|
||
|
parent: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
name: object
|
||
|
nameWithType: object
|
||
|
fullName: object
|
||
|
nameWithType.vb: Object
|
||
|
fullName.vb: Object
|
||
|
name.vb: Object
|
||
|
- uid: System.Object.ToString
|
||
|
commentId: M:System.Object.ToString
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
||
|
name: ToString()
|
||
|
nameWithType: object.ToString()
|
||
|
fullName: object.ToString()
|
||
|
nameWithType.vb: Object.ToString()
|
||
|
fullName.vb: Object.ToString()
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.ToString
|
||
|
name: ToString
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.ToString
|
||
|
name: ToString
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: System.Object.Equals(System.Object)
|
||
|
commentId: M:System.Object.Equals(System.Object)
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
||
|
name: Equals(object)
|
||
|
nameWithType: object.Equals(object)
|
||
|
fullName: object.Equals(object)
|
||
|
nameWithType.vb: Object.Equals(Object)
|
||
|
fullName.vb: Object.Equals(Object)
|
||
|
name.vb: Equals(Object)
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.Equals(System.Object)
|
||
|
name: Equals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.Equals(System.Object)
|
||
|
name: Equals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
- uid: System.Object.Equals(System.Object,System.Object)
|
||
|
commentId: M:System.Object.Equals(System.Object,System.Object)
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
||
|
name: Equals(object, object)
|
||
|
nameWithType: object.Equals(object, object)
|
||
|
fullName: object.Equals(object, object)
|
||
|
nameWithType.vb: Object.Equals(Object, Object)
|
||
|
fullName.vb: Object.Equals(Object, Object)
|
||
|
name.vb: Equals(Object, Object)
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.Equals(System.Object,System.Object)
|
||
|
name: Equals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Object
|
||
|
name: object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.Equals(System.Object,System.Object)
|
||
|
name: Equals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Object
|
||
|
name: Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
||
|
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
||
|
name: ReferenceEquals(object, object)
|
||
|
nameWithType: object.ReferenceEquals(object, object)
|
||
|
fullName: object.ReferenceEquals(object, object)
|
||
|
nameWithType.vb: Object.ReferenceEquals(Object, Object)
|
||
|
fullName.vb: Object.ReferenceEquals(Object, Object)
|
||
|
name.vb: ReferenceEquals(Object, Object)
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
||
|
name: ReferenceEquals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Object
|
||
|
name: object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
|
||
|
name: ReferenceEquals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Object
|
||
|
name: Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
- uid: System.Object.GetHashCode
|
||
|
commentId: M:System.Object.GetHashCode
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
||
|
name: GetHashCode()
|
||
|
nameWithType: object.GetHashCode()
|
||
|
fullName: object.GetHashCode()
|
||
|
nameWithType.vb: Object.GetHashCode()
|
||
|
fullName.vb: Object.GetHashCode()
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.GetHashCode
|
||
|
name: GetHashCode
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.GetHashCode
|
||
|
name: GetHashCode
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: System.Object.GetType
|
||
|
commentId: M:System.Object.GetType
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
||
|
name: GetType()
|
||
|
nameWithType: object.GetType()
|
||
|
fullName: object.GetType()
|
||
|
nameWithType.vb: Object.GetType()
|
||
|
fullName.vb: Object.GetType()
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.GetType
|
||
|
name: GetType
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.GetType
|
||
|
name: GetType
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: System.Object.MemberwiseClone
|
||
|
commentId: M:System.Object.MemberwiseClone
|
||
|
parent: System.Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
||
|
name: MemberwiseClone()
|
||
|
nameWithType: object.MemberwiseClone()
|
||
|
fullName: object.MemberwiseClone()
|
||
|
nameWithType.vb: Object.MemberwiseClone()
|
||
|
fullName.vb: Object.MemberwiseClone()
|
||
|
spec.csharp:
|
||
|
- uid: System.Object.MemberwiseClone
|
||
|
name: MemberwiseClone
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.Object.MemberwiseClone
|
||
|
name: MemberwiseClone
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Input
|
||
|
commentId: N:Microsoft.Xna.Framework.Input
|
||
|
isExternal: true
|
||
|
name: Microsoft.Xna.Framework.Input
|
||
|
nameWithType: Microsoft.Xna.Framework.Input
|
||
|
fullName: Microsoft.Xna.Framework.Input
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft
|
||
|
name: Microsoft
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna
|
||
|
name: Xna
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework
|
||
|
name: Framework
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework.Input
|
||
|
name: Input
|
||
|
isExternal: true
|
||
|
spec.vb:
|
||
|
- uid: Microsoft
|
||
|
name: Microsoft
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna
|
||
|
name: Xna
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework
|
||
|
name: Framework
|
||
|
isExternal: true
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework.Input
|
||
|
name: Input
|
||
|
isExternal: true
|
||
|
- uid: System
|
||
|
commentId: N:System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system
|
||
|
name: System
|
||
|
nameWithType: System
|
||
|
fullName: System
|
||
|
- uid: MLEM.Input.ModifierKey
|
||
|
commentId: T:MLEM.Input.ModifierKey
|
||
|
parent: MLEM.Input
|
||
|
href: MLEM.Input.ModifierKey.html
|
||
|
name: ModifierKey
|
||
|
nameWithType: ModifierKey
|
||
|
fullName: MLEM.Input.ModifierKey
|
||
|
- uid: MLEM.Input.ModifierKey[]
|
||
|
isExternal: true
|
||
|
href: MLEM.Input.ModifierKey.html
|
||
|
name: ModifierKey[]
|
||
|
nameWithType: ModifierKey[]
|
||
|
fullName: MLEM.Input.ModifierKey[]
|
||
|
nameWithType.vb: ModifierKey()
|
||
|
fullName.vb: MLEM.Input.ModifierKey()
|
||
|
name.vb: ModifierKey()
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Input.ModifierKey
|
||
|
name: ModifierKey
|
||
|
href: MLEM.Input.ModifierKey.html
|
||
|
- name: '['
|
||
|
- name: ']'
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Input.ModifierKey
|
||
|
name: ModifierKey
|
||
|
href: MLEM.Input.ModifierKey.html
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: MLEM.Input.KeysExtensions.GetKeys*
|
||
|
commentId: Overload:MLEM.Input.KeysExtensions.GetKeys
|
||
|
href: MLEM.Input.KeysExtensions.html#MLEM_Input_KeysExtensions_GetKeys_MLEM_Input_ModifierKey_
|
||
|
name: GetKeys
|
||
|
nameWithType: KeysExtensions.GetKeys
|
||
|
fullName: MLEM.Input.KeysExtensions.GetKeys
|
||
|
- uid: System.Collections.Generic.IEnumerable{Microsoft.Xna.Framework.Input.Keys}
|
||
|
commentId: T:System.Collections.Generic.IEnumerable{Microsoft.Xna.Framework.Input.Keys}
|
||
|
parent: System.Collections.Generic
|
||
|
definition: System.Collections.Generic.IEnumerable`1
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
||
|
name: IEnumerable<Keys>
|
||
|
nameWithType: IEnumerable<Keys>
|
||
|
fullName: System.Collections.Generic.IEnumerable<Microsoft.Xna.Framework.Input.Keys>
|
||
|
nameWithType.vb: IEnumerable(Of Keys)
|
||
|
fullName.vb: System.Collections.Generic.IEnumerable(Of Microsoft.Xna.Framework.Input.Keys)
|
||
|
name.vb: IEnumerable(Of Keys)
|
||
|
spec.csharp:
|
||
|
- uid: System.Collections.Generic.IEnumerable`1
|
||
|
name: IEnumerable
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
||
|
- name: <
|
||
|
- uid: Microsoft.Xna.Framework.Input.Keys
|
||
|
name: Keys
|
||
|
isExternal: true
|
||
|
- name: '>'
|
||
|
spec.vb:
|
||
|
- uid: System.Collections.Generic.IEnumerable`1
|
||
|
name: IEnumerable
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: Microsoft.Xna.Framework.Input.Keys
|
||
|
name: Keys
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
- uid: System.Collections.Generic.IEnumerable`1
|
||
|
commentId: T:System.Collections.Generic.IEnumerable`1
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
||
|
name: IEnumerable<T>
|
||
|
nameWithType: IEnumerable<T>
|
||
|
fullName: System.Collections.Generic.IEnumerable<T>
|
||
|
nameWithType.vb: IEnumerable(Of T)
|
||
|
fullName.vb: System.Collections.Generic.IEnumerable(Of T)
|
||
|
name.vb: IEnumerable(Of T)
|
||
|
spec.csharp:
|
||
|
- uid: System.Collections.Generic.IEnumerable`1
|
||
|
name: IEnumerable
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
||
|
- name: <
|
||
|
- name: T
|
||
|
- name: '>'
|
||
|
spec.vb:
|
||
|
- uid: System.Collections.Generic.IEnumerable`1
|
||
|
name: IEnumerable
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- uid: System.Collections.Generic
|
||
|
commentId: N:System.Collections.Generic
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system
|
||
|
name: System.Collections.Generic
|
||
|
nameWithType: System.Collections.Generic
|
||
|
fullName: System.Collections.Generic
|
||
|
spec.csharp:
|
||
|
- uid: System
|
||
|
name: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system
|
||
|
- name: .
|
||
|
- uid: System.Collections
|
||
|
name: Collections
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
||
|
- name: .
|
||
|
- uid: System.Collections.Generic
|
||
|
name: Generic
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
||
|
spec.vb:
|
||
|
- uid: System
|
||
|
name: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system
|
||
|
- name: .
|
||
|
- uid: System.Collections
|
||
|
name: Collections
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
||
|
- name: .
|
||
|
- uid: System.Collections.Generic
|
||
|
name: Generic
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
||
|
- uid: MLEM.Input.ModifierKey.None
|
||
|
commentId: F:MLEM.Input.ModifierKey.None
|
||
|
href: MLEM.Input.ModifierKey.html#MLEM_Input_ModifierKey_None
|
||
|
name: None
|
||
|
nameWithType: ModifierKey.None
|
||
|
fullName: MLEM.Input.ModifierKey.None
|
||
|
- uid: MLEM.Input.KeysExtensions.GetModifier*
|
||
|
commentId: Overload:MLEM.Input.KeysExtensions.GetModifier
|
||
|
href: MLEM.Input.KeysExtensions.html#MLEM_Input_KeysExtensions_GetModifier_Microsoft_Xna_Framework_Input_Keys_
|
||
|
name: GetModifier
|
||
|
nameWithType: KeysExtensions.GetModifier
|
||
|
fullName: MLEM.Input.KeysExtensions.GetModifier
|
||
|
- uid: MLEM.Input.GenericInput
|
||
|
commentId: T:MLEM.Input.GenericInput
|
||
|
parent: MLEM.Input
|
||
|
href: MLEM.Input.GenericInput.html
|
||
|
name: GenericInput
|
||
|
nameWithType: GenericInput
|
||
|
fullName: MLEM.Input.GenericInput
|
||
|
- uid: MLEM.Input.KeysExtensions.IsModifier*
|
||
|
commentId: Overload:MLEM.Input.KeysExtensions.IsModifier
|
||
|
href: MLEM.Input.KeysExtensions.html#MLEM_Input_KeysExtensions_IsModifier_Microsoft_Xna_Framework_Input_Keys_
|
||
|
name: IsModifier
|
||
|
nameWithType: KeysExtensions.IsModifier
|
||
|
fullName: MLEM.Input.KeysExtensions.IsModifier
|
||
|
- uid: System.Boolean
|
||
|
commentId: T:System.Boolean
|
||
|
parent: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||
|
name: bool
|
||
|
nameWithType: bool
|
||
|
fullName: bool
|
||
|
nameWithType.vb: Boolean
|
||
|
fullName.vb: Boolean
|
||
|
name.vb: Boolean
|