Add document
This commit is contained in:
573
doc/api/Ghost.Entities.ComponentManager.yml
Normal file
573
doc/api/Ghost.Entities.ComponentManager.yml
Normal file
@@ -0,0 +1,573 @@
|
||||
### YamlMime:ManagedReference
|
||||
items:
|
||||
- uid: Ghost.Entities.ComponentManager
|
||||
commentId: T:Ghost.Entities.ComponentManager
|
||||
id: ComponentManager
|
||||
parent: Ghost.Entities
|
||||
children:
|
||||
- Ghost.Entities.ComponentManager.ArchetypeCount
|
||||
- Ghost.Entities.ComponentManager.Dispose
|
||||
- Ghost.Entities.ComponentManager.Finalize
|
||||
- Ghost.Entities.ComponentManager.GetEntityQueryReference(Ghost.Core.Identifier{Ghost.Entities.EntityQuery})
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: ComponentManager
|
||||
nameWithType: ComponentManager
|
||||
fullName: Ghost.Entities.ComponentManager
|
||||
type: Class
|
||||
source:
|
||||
remote:
|
||||
path: src/Runtime/Ghost.Entities/Component.cs
|
||||
branch: develop
|
||||
repo: https://git.personalnas.com/Misaki/GhostEngine
|
||||
id: ComponentManager
|
||||
path: ../src/Runtime/Ghost.Entities/Component.cs
|
||||
startLine: 149
|
||||
assemblies:
|
||||
- Ghost.Entities
|
||||
namespace: Ghost.Entities
|
||||
syntax:
|
||||
content: 'public class ComponentManager : IDisposable'
|
||||
content.vb: Public Class ComponentManager Implements IDisposable
|
||||
inheritance:
|
||||
- System.Object
|
||||
implements:
|
||||
- System.IDisposable
|
||||
inheritedMembers:
|
||||
- System.Object.Equals(System.Object)
|
||||
- System.Object.Equals(System.Object,System.Object)
|
||||
- System.Object.GetHashCode
|
||||
- System.Object.GetType
|
||||
- System.Object.MemberwiseClone
|
||||
- System.Object.ReferenceEquals(System.Object,System.Object)
|
||||
- System.Object.ToString
|
||||
- uid: Ghost.Entities.ComponentManager.ArchetypeCount
|
||||
commentId: P:Ghost.Entities.ComponentManager.ArchetypeCount
|
||||
id: ArchetypeCount
|
||||
parent: Ghost.Entities.ComponentManager
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: ArchetypeCount
|
||||
nameWithType: ComponentManager.ArchetypeCount
|
||||
fullName: Ghost.Entities.ComponentManager.ArchetypeCount
|
||||
type: Property
|
||||
source:
|
||||
remote:
|
||||
path: src/Runtime/Ghost.Entities/Component.cs
|
||||
branch: develop
|
||||
repo: https://git.personalnas.com/Misaki/GhostEngine
|
||||
id: ArchetypeCount
|
||||
path: ../src/Runtime/Ghost.Entities/Component.cs
|
||||
startLine: 161
|
||||
assemblies:
|
||||
- Ghost.Entities
|
||||
namespace: Ghost.Entities
|
||||
syntax:
|
||||
content: public int ArchetypeCount { get; }
|
||||
parameters: []
|
||||
return:
|
||||
type: System.Int32
|
||||
content.vb: Public ReadOnly Property ArchetypeCount As Integer
|
||||
overload: Ghost.Entities.ComponentManager.ArchetypeCount*
|
||||
- uid: Ghost.Entities.ComponentManager.Finalize
|
||||
commentId: M:Ghost.Entities.ComponentManager.Finalize
|
||||
id: Finalize
|
||||
parent: Ghost.Entities.ComponentManager
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: ~ComponentManager()
|
||||
nameWithType: ComponentManager.~ComponentManager()
|
||||
fullName: Ghost.Entities.ComponentManager.~ComponentManager()
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: src/Runtime/Ghost.Entities/Component.cs
|
||||
branch: develop
|
||||
repo: https://git.personalnas.com/Misaki/GhostEngine
|
||||
id: Finalize
|
||||
path: ../src/Runtime/Ghost.Entities/Component.cs
|
||||
startLine: 177
|
||||
assemblies:
|
||||
- Ghost.Entities
|
||||
namespace: Ghost.Entities
|
||||
syntax:
|
||||
content: protected ~ComponentManager()
|
||||
content.vb: 'Protected '
|
||||
overload: Ghost.Entities.ComponentManager.Finalize*
|
||||
nameWithType.vb: ''
|
||||
fullName.vb: ''
|
||||
name.vb: ''
|
||||
- uid: Ghost.Entities.ComponentManager.GetEntityQueryReference(Ghost.Core.Identifier{Ghost.Entities.EntityQuery})
|
||||
commentId: M:Ghost.Entities.ComponentManager.GetEntityQueryReference(Ghost.Core.Identifier{Ghost.Entities.EntityQuery})
|
||||
id: GetEntityQueryReference(Ghost.Core.Identifier{Ghost.Entities.EntityQuery})
|
||||
parent: Ghost.Entities.ComponentManager
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GetEntityQueryReference(Identifier<EntityQuery>)
|
||||
nameWithType: ComponentManager.GetEntityQueryReference(Identifier<EntityQuery>)
|
||||
fullName: Ghost.Entities.ComponentManager.GetEntityQueryReference(Ghost.Core.Identifier<Ghost.Entities.EntityQuery>)
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: src/Runtime/Ghost.Entities/Component.cs
|
||||
branch: develop
|
||||
repo: https://git.personalnas.com/Misaki/GhostEngine
|
||||
id: GetEntityQueryReference
|
||||
path: ../src/Runtime/Ghost.Entities/Component.cs
|
||||
startLine: 245
|
||||
assemblies:
|
||||
- Ghost.Entities
|
||||
namespace: Ghost.Entities
|
||||
summary: Gets a reference to the entity query with the specified identifier.
|
||||
example: []
|
||||
syntax:
|
||||
content: public ref EntityQuery GetEntityQueryReference(Identifier<EntityQuery> id)
|
||||
parameters:
|
||||
- id: id
|
||||
type: Ghost.Core.Identifier{Ghost.Entities.EntityQuery}
|
||||
return:
|
||||
type: Ghost.Entities.EntityQuery
|
||||
content.vb: Public ByRef Function GetEntityQueryReference(id As Identifier(Of EntityQuery)) As EntityQuery
|
||||
overload: Ghost.Entities.ComponentManager.GetEntityQueryReference*
|
||||
nameWithType.vb: ComponentManager.GetEntityQueryReference(Identifier(Of EntityQuery))
|
||||
fullName.vb: Ghost.Entities.ComponentManager.GetEntityQueryReference(Ghost.Core.Identifier(Of Ghost.Entities.EntityQuery))
|
||||
name.vb: GetEntityQueryReference(Identifier(Of EntityQuery))
|
||||
- uid: Ghost.Entities.ComponentManager.Dispose
|
||||
commentId: M:Ghost.Entities.ComponentManager.Dispose
|
||||
id: Dispose
|
||||
parent: Ghost.Entities.ComponentManager
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: Dispose()
|
||||
nameWithType: ComponentManager.Dispose()
|
||||
fullName: Ghost.Entities.ComponentManager.Dispose()
|
||||
type: Method
|
||||
source:
|
||||
remote:
|
||||
path: src/Runtime/Ghost.Entities/Component.cs
|
||||
branch: develop
|
||||
repo: https://git.personalnas.com/Misaki/GhostEngine
|
||||
id: Dispose
|
||||
path: ../src/Runtime/Ghost.Entities/Component.cs
|
||||
startLine: 251
|
||||
assemblies:
|
||||
- Ghost.Entities
|
||||
namespace: Ghost.Entities
|
||||
summary: Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
||||
example: []
|
||||
syntax:
|
||||
content: public void Dispose()
|
||||
content.vb: Public Sub Dispose()
|
||||
overload: Ghost.Entities.ComponentManager.Dispose*
|
||||
implements:
|
||||
- System.IDisposable.Dispose
|
||||
references:
|
||||
- uid: Ghost.Entities
|
||||
commentId: N:Ghost.Entities
|
||||
href: Ghost.html
|
||||
name: Ghost.Entities
|
||||
nameWithType: Ghost.Entities
|
||||
fullName: Ghost.Entities
|
||||
spec.csharp:
|
||||
- uid: Ghost
|
||||
name: Ghost
|
||||
href: Ghost.html
|
||||
- name: .
|
||||
- uid: Ghost.Entities
|
||||
name: Entities
|
||||
href: Ghost.Entities.html
|
||||
spec.vb:
|
||||
- uid: Ghost
|
||||
name: Ghost
|
||||
href: Ghost.html
|
||||
- name: .
|
||||
- uid: Ghost.Entities
|
||||
name: Entities
|
||||
href: Ghost.Entities.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.IDisposable
|
||||
commentId: T:System.IDisposable
|
||||
parent: System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.idisposable
|
||||
name: IDisposable
|
||||
nameWithType: IDisposable
|
||||
fullName: System.IDisposable
|
||||
- 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.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: 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.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
|
||||
commentId: N:System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system
|
||||
name: System
|
||||
nameWithType: System
|
||||
fullName: System
|
||||
- uid: Ghost.Entities.ComponentManager.ArchetypeCount*
|
||||
commentId: Overload:Ghost.Entities.ComponentManager.ArchetypeCount
|
||||
href: Ghost.Entities.ComponentManager.html#Ghost_Entities_ComponentManager_ArchetypeCount
|
||||
name: ArchetypeCount
|
||||
nameWithType: ComponentManager.ArchetypeCount
|
||||
fullName: Ghost.Entities.ComponentManager.ArchetypeCount
|
||||
- uid: System.Int32
|
||||
commentId: T:System.Int32
|
||||
parent: System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.int32
|
||||
name: int
|
||||
nameWithType: int
|
||||
fullName: int
|
||||
nameWithType.vb: Integer
|
||||
fullName.vb: Integer
|
||||
name.vb: Integer
|
||||
- uid: Ghost.Entities.ComponentManager.Finalize*
|
||||
commentId: Overload:Ghost.Entities.ComponentManager.Finalize
|
||||
href: Ghost.Entities.ComponentManager.html#Ghost_Entities_ComponentManager_Finalize
|
||||
name: ~ComponentManager
|
||||
nameWithType: ComponentManager.~ComponentManager
|
||||
fullName: Ghost.Entities.ComponentManager.~ComponentManager
|
||||
spec.csharp:
|
||||
- name: "~"
|
||||
- uid: Ghost.Entities.ComponentManager.Finalize*
|
||||
name: ComponentManager
|
||||
href: Ghost.Entities.ComponentManager.html#Ghost_Entities_ComponentManager_Finalize
|
||||
- uid: Ghost.Entities.ComponentManager.GetEntityQueryReference*
|
||||
commentId: Overload:Ghost.Entities.ComponentManager.GetEntityQueryReference
|
||||
href: Ghost.Entities.ComponentManager.html#Ghost_Entities_ComponentManager_GetEntityQueryReference_Ghost_Core_Identifier_Ghost_Entities_EntityQuery__
|
||||
name: GetEntityQueryReference
|
||||
nameWithType: ComponentManager.GetEntityQueryReference
|
||||
fullName: Ghost.Entities.ComponentManager.GetEntityQueryReference
|
||||
- uid: Ghost.Core.Identifier{Ghost.Entities.EntityQuery}
|
||||
commentId: T:Ghost.Core.Identifier{Ghost.Entities.EntityQuery}
|
||||
parent: Ghost.Core
|
||||
definition: Ghost.Core.Identifier`1
|
||||
href: Ghost.Entities.EntityQuery.html
|
||||
name: Identifier<EntityQuery>
|
||||
nameWithType: Identifier<EntityQuery>
|
||||
fullName: Ghost.Core.Identifier<Ghost.Entities.EntityQuery>
|
||||
nameWithType.vb: Identifier(Of EntityQuery)
|
||||
fullName.vb: Ghost.Core.Identifier(Of Ghost.Entities.EntityQuery)
|
||||
name.vb: Identifier(Of EntityQuery)
|
||||
spec.csharp:
|
||||
- uid: Ghost.Core.Identifier`1
|
||||
name: Identifier
|
||||
- name: <
|
||||
- uid: Ghost.Entities.EntityQuery
|
||||
name: EntityQuery
|
||||
href: Ghost.Entities.EntityQuery.html
|
||||
- name: '>'
|
||||
spec.vb:
|
||||
- uid: Ghost.Core.Identifier`1
|
||||
name: Identifier
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- uid: Ghost.Entities.EntityQuery
|
||||
name: EntityQuery
|
||||
href: Ghost.Entities.EntityQuery.html
|
||||
- name: )
|
||||
- uid: Ghost.Entities.EntityQuery
|
||||
commentId: T:Ghost.Entities.EntityQuery
|
||||
parent: Ghost.Entities
|
||||
href: Ghost.Entities.EntityQuery.html
|
||||
name: EntityQuery
|
||||
nameWithType: EntityQuery
|
||||
fullName: Ghost.Entities.EntityQuery
|
||||
- uid: Ghost.Core.Identifier`1
|
||||
commentId: T:Ghost.Core.Identifier`1
|
||||
name: Identifier<T>
|
||||
nameWithType: Identifier<T>
|
||||
fullName: Ghost.Core.Identifier<T>
|
||||
nameWithType.vb: Identifier(Of T)
|
||||
fullName.vb: Ghost.Core.Identifier(Of T)
|
||||
name.vb: Identifier(Of T)
|
||||
spec.csharp:
|
||||
- uid: Ghost.Core.Identifier`1
|
||||
name: Identifier
|
||||
- name: <
|
||||
- name: T
|
||||
- name: '>'
|
||||
spec.vb:
|
||||
- uid: Ghost.Core.Identifier`1
|
||||
name: Identifier
|
||||
- name: (
|
||||
- name: Of
|
||||
- name: " "
|
||||
- name: T
|
||||
- name: )
|
||||
- uid: Ghost.Core
|
||||
commentId: N:Ghost.Core
|
||||
name: Ghost.Core
|
||||
nameWithType: Ghost.Core
|
||||
fullName: Ghost.Core
|
||||
spec.csharp:
|
||||
- uid: Ghost
|
||||
name: Ghost
|
||||
- name: .
|
||||
- uid: Ghost.Core
|
||||
name: Core
|
||||
spec.vb:
|
||||
- uid: Ghost
|
||||
name: Ghost
|
||||
- name: .
|
||||
- uid: Ghost.Core
|
||||
name: Core
|
||||
- uid: Ghost.Entities.ComponentManager.Dispose*
|
||||
commentId: Overload:Ghost.Entities.ComponentManager.Dispose
|
||||
href: Ghost.Entities.ComponentManager.html#Ghost_Entities_ComponentManager_Dispose
|
||||
name: Dispose
|
||||
nameWithType: ComponentManager.Dispose
|
||||
fullName: Ghost.Entities.ComponentManager.Dispose
|
||||
- uid: System.IDisposable.Dispose
|
||||
commentId: M:System.IDisposable.Dispose
|
||||
parent: System.IDisposable
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose
|
||||
name: Dispose()
|
||||
nameWithType: IDisposable.Dispose()
|
||||
fullName: System.IDisposable.Dispose()
|
||||
spec.csharp:
|
||||
- uid: System.IDisposable.Dispose
|
||||
name: Dispose
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose
|
||||
- name: (
|
||||
- name: )
|
||||
spec.vb:
|
||||
- uid: System.IDisposable.Dispose
|
||||
name: Dispose
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose
|
||||
- name: (
|
||||
- name: )
|
||||
Reference in New Issue
Block a user