Files
GhostEngine/docs/documents/api/Ghost.Entities.SystemBase.yml

695 lines
23 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: Ghost.Entities.SystemBase
commentId: T:Ghost.Entities.SystemBase
id: SystemBase
parent: Ghost.Entities
children:
- Ghost.Entities.SystemBase.LastSystemVersion
- Ghost.Entities.SystemBase.OnCleanup(Ghost.Entities.SystemAPI@)
- Ghost.Entities.SystemBase.OnInitialize(Ghost.Entities.SystemAPI@)
- Ghost.Entities.SystemBase.OnStartRunning
- Ghost.Entities.SystemBase.OnStopRunning
- Ghost.Entities.SystemBase.OnUpdate(Ghost.Entities.SystemAPI@)
- Ghost.Entities.SystemBase.RequireQueryForUpdate(Ghost.Core.Identifier{Ghost.Entities.EntityQuery})
- Ghost.Entities.SystemBase.World
langs:
- csharp
- vb
name: SystemBase
nameWithType: SystemBase
fullName: Ghost.Entities.SystemBase
type: Class
source:
remote:
path: src/Runtime/Ghost.Entities/System.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: SystemBase
path: src/Runtime/Ghost.Entities/System.cs
startLine: 24
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
syntax:
content: 'public abstract class SystemBase : ISystem'
content.vb: Public MustInherit Class SystemBase Implements ISystem
inheritance:
- System.Object
implements:
- Ghost.Entities.ISystem
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.SystemBase.World
commentId: P:Ghost.Entities.SystemBase.World
id: World
parent: Ghost.Entities.SystemBase
langs:
- csharp
- vb
name: World
nameWithType: SystemBase.World
fullName: Ghost.Entities.SystemBase.World
type: Property
source:
remote:
path: src/Runtime/Ghost.Entities/System.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: World
path: src/Runtime/Ghost.Entities/System.cs
startLine: 28
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
syntax:
content: public World World { get; init; }
parameters: []
return:
type: Ghost.Entities.World
content.vb: Public Property World As World
overload: Ghost.Entities.SystemBase.World*
- uid: Ghost.Entities.SystemBase.LastSystemVersion
commentId: P:Ghost.Entities.SystemBase.LastSystemVersion
id: LastSystemVersion
parent: Ghost.Entities.SystemBase
langs:
- csharp
- vb
name: LastSystemVersion
nameWithType: SystemBase.LastSystemVersion
fullName: Ghost.Entities.SystemBase.LastSystemVersion
type: Property
source:
remote:
path: src/Runtime/Ghost.Entities/System.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: LastSystemVersion
path: src/Runtime/Ghost.Entities/System.cs
startLine: 33
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
syntax:
content: public int LastSystemVersion { get; }
parameters: []
return:
type: System.Int32
content.vb: Public Property LastSystemVersion As Integer
overload: Ghost.Entities.SystemBase.LastSystemVersion*
- uid: Ghost.Entities.SystemBase.RequireQueryForUpdate(Ghost.Core.Identifier{Ghost.Entities.EntityQuery})
commentId: M:Ghost.Entities.SystemBase.RequireQueryForUpdate(Ghost.Core.Identifier{Ghost.Entities.EntityQuery})
id: RequireQueryForUpdate(Ghost.Core.Identifier{Ghost.Entities.EntityQuery})
parent: Ghost.Entities.SystemBase
langs:
- csharp
- vb
name: RequireQueryForUpdate(Identifier<EntityQuery>)
nameWithType: SystemBase.RequireQueryForUpdate(Identifier<EntityQuery>)
fullName: Ghost.Entities.SystemBase.RequireQueryForUpdate(Ghost.Core.Identifier<Ghost.Entities.EntityQuery>)
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/System.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: RequireQueryForUpdate
path: src/Runtime/Ghost.Entities/System.cs
startLine: 57
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
syntax:
content: protected void RequireQueryForUpdate(Identifier<EntityQuery> queryID)
parameters:
- id: queryID
type: Ghost.Core.Identifier{Ghost.Entities.EntityQuery}
content.vb: Protected Sub RequireQueryForUpdate(queryID As Identifier(Of EntityQuery))
overload: Ghost.Entities.SystemBase.RequireQueryForUpdate*
nameWithType.vb: SystemBase.RequireQueryForUpdate(Identifier(Of EntityQuery))
fullName.vb: Ghost.Entities.SystemBase.RequireQueryForUpdate(Ghost.Core.Identifier(Of Ghost.Entities.EntityQuery))
name.vb: RequireQueryForUpdate(Identifier(Of EntityQuery))
- uid: Ghost.Entities.SystemBase.OnInitialize(Ghost.Entities.SystemAPI@)
commentId: M:Ghost.Entities.SystemBase.OnInitialize(Ghost.Entities.SystemAPI@)
id: OnInitialize(Ghost.Entities.SystemAPI@)
parent: Ghost.Entities.SystemBase
langs:
- csharp
- vb
name: OnInitialize(ref readonly SystemAPI)
nameWithType: SystemBase.OnInitialize(ref readonly SystemAPI)
fullName: Ghost.Entities.SystemBase.OnInitialize(ref readonly Ghost.Entities.SystemAPI)
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/System.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: OnInitialize
path: src/Runtime/Ghost.Entities/System.cs
startLine: 94
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
syntax:
content: protected virtual void OnInitialize(ref readonly SystemAPI systemAPI)
parameters:
- id: systemAPI
type: Ghost.Entities.SystemAPI
content.vb: Protected Overridable Sub OnInitialize(systemAPI As SystemAPI)
overload: Ghost.Entities.SystemBase.OnInitialize*
nameWithType.vb: SystemBase.OnInitialize(SystemAPI)
fullName.vb: Ghost.Entities.SystemBase.OnInitialize(Ghost.Entities.SystemAPI)
name.vb: OnInitialize(SystemAPI)
- uid: Ghost.Entities.SystemBase.OnUpdate(Ghost.Entities.SystemAPI@)
commentId: M:Ghost.Entities.SystemBase.OnUpdate(Ghost.Entities.SystemAPI@)
id: OnUpdate(Ghost.Entities.SystemAPI@)
parent: Ghost.Entities.SystemBase
langs:
- csharp
- vb
name: OnUpdate(ref readonly SystemAPI)
nameWithType: SystemBase.OnUpdate(ref readonly SystemAPI)
fullName: Ghost.Entities.SystemBase.OnUpdate(ref readonly Ghost.Entities.SystemAPI)
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/System.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: OnUpdate
path: src/Runtime/Ghost.Entities/System.cs
startLine: 98
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
syntax:
content: protected virtual void OnUpdate(ref readonly SystemAPI systemAPI)
parameters:
- id: systemAPI
type: Ghost.Entities.SystemAPI
content.vb: Protected Overridable Sub OnUpdate(systemAPI As SystemAPI)
overload: Ghost.Entities.SystemBase.OnUpdate*
nameWithType.vb: SystemBase.OnUpdate(SystemAPI)
fullName.vb: Ghost.Entities.SystemBase.OnUpdate(Ghost.Entities.SystemAPI)
name.vb: OnUpdate(SystemAPI)
- uid: Ghost.Entities.SystemBase.OnCleanup(Ghost.Entities.SystemAPI@)
commentId: M:Ghost.Entities.SystemBase.OnCleanup(Ghost.Entities.SystemAPI@)
id: OnCleanup(Ghost.Entities.SystemAPI@)
parent: Ghost.Entities.SystemBase
langs:
- csharp
- vb
name: OnCleanup(ref readonly SystemAPI)
nameWithType: SystemBase.OnCleanup(ref readonly SystemAPI)
fullName: Ghost.Entities.SystemBase.OnCleanup(ref readonly Ghost.Entities.SystemAPI)
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/System.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: OnCleanup
path: src/Runtime/Ghost.Entities/System.cs
startLine: 102
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
syntax:
content: protected virtual void OnCleanup(ref readonly SystemAPI systemAPI)
parameters:
- id: systemAPI
type: Ghost.Entities.SystemAPI
content.vb: Protected Overridable Sub OnCleanup(systemAPI As SystemAPI)
overload: Ghost.Entities.SystemBase.OnCleanup*
nameWithType.vb: SystemBase.OnCleanup(SystemAPI)
fullName.vb: Ghost.Entities.SystemBase.OnCleanup(Ghost.Entities.SystemAPI)
name.vb: OnCleanup(SystemAPI)
- uid: Ghost.Entities.SystemBase.OnStopRunning
commentId: M:Ghost.Entities.SystemBase.OnStopRunning
id: OnStopRunning
parent: Ghost.Entities.SystemBase
langs:
- csharp
- vb
name: OnStopRunning()
nameWithType: SystemBase.OnStopRunning()
fullName: Ghost.Entities.SystemBase.OnStopRunning()
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/System.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: OnStopRunning
path: src/Runtime/Ghost.Entities/System.cs
startLine: 106
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
syntax:
content: protected virtual void OnStopRunning()
content.vb: Protected Overridable Sub OnStopRunning()
overload: Ghost.Entities.SystemBase.OnStopRunning*
- uid: Ghost.Entities.SystemBase.OnStartRunning
commentId: M:Ghost.Entities.SystemBase.OnStartRunning
id: OnStartRunning
parent: Ghost.Entities.SystemBase
langs:
- csharp
- vb
name: OnStartRunning()
nameWithType: SystemBase.OnStartRunning()
fullName: Ghost.Entities.SystemBase.OnStartRunning()
type: Method
source:
remote:
path: src/Runtime/Ghost.Entities/System.cs
branch: develop
repo: https://git.personalnas.com/Misaki/GhostEngine.git
id: OnStartRunning
path: src/Runtime/Ghost.Entities/System.cs
startLine: 110
assemblies:
- Ghost.Entities
namespace: Ghost.Entities
syntax:
content: protected virtual void OnStartRunning()
content.vb: Protected Overridable Sub OnStartRunning()
overload: Ghost.Entities.SystemBase.OnStartRunning*
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: Ghost.Entities.ISystem
commentId: T:Ghost.Entities.ISystem
parent: Ghost.Entities
href: Ghost.Entities.ISystem.html
name: ISystem
nameWithType: ISystem
fullName: Ghost.Entities.ISystem
- 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.SystemBase.World*
commentId: Overload:Ghost.Entities.SystemBase.World
href: Ghost.Entities.SystemBase.html#Ghost_Entities_SystemBase_World
name: World
nameWithType: SystemBase.World
fullName: Ghost.Entities.SystemBase.World
- uid: Ghost.Entities.World
commentId: T:Ghost.Entities.World
parent: Ghost.Entities
href: Ghost.Entities.World.html
name: World
nameWithType: World
fullName: Ghost.Entities.World
- uid: Ghost.Entities.SystemBase.LastSystemVersion*
commentId: Overload:Ghost.Entities.SystemBase.LastSystemVersion
href: Ghost.Entities.SystemBase.html#Ghost_Entities_SystemBase_LastSystemVersion
name: LastSystemVersion
nameWithType: SystemBase.LastSystemVersion
fullName: Ghost.Entities.SystemBase.LastSystemVersion
- 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.SystemBase.RequireQueryForUpdate*
commentId: Overload:Ghost.Entities.SystemBase.RequireQueryForUpdate
href: Ghost.Entities.SystemBase.html#Ghost_Entities_SystemBase_RequireQueryForUpdate_Ghost_Core_Identifier_Ghost_Entities_EntityQuery__
name: RequireQueryForUpdate
nameWithType: SystemBase.RequireQueryForUpdate
fullName: Ghost.Entities.SystemBase.RequireQueryForUpdate
- 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.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.SystemBase.OnInitialize*
commentId: Overload:Ghost.Entities.SystemBase.OnInitialize
href: Ghost.Entities.SystemBase.html#Ghost_Entities_SystemBase_OnInitialize_Ghost_Entities_SystemAPI__
name: OnInitialize
nameWithType: SystemBase.OnInitialize
fullName: Ghost.Entities.SystemBase.OnInitialize
- uid: Ghost.Entities.SystemAPI
commentId: T:Ghost.Entities.SystemAPI
parent: Ghost.Entities
href: Ghost.Entities.SystemAPI.html
name: SystemAPI
nameWithType: SystemAPI
fullName: Ghost.Entities.SystemAPI
- uid: Ghost.Entities.SystemBase.OnUpdate*
commentId: Overload:Ghost.Entities.SystemBase.OnUpdate
href: Ghost.Entities.SystemBase.html#Ghost_Entities_SystemBase_OnUpdate_Ghost_Entities_SystemAPI__
name: OnUpdate
nameWithType: SystemBase.OnUpdate
fullName: Ghost.Entities.SystemBase.OnUpdate
- uid: Ghost.Entities.SystemBase.OnCleanup*
commentId: Overload:Ghost.Entities.SystemBase.OnCleanup
href: Ghost.Entities.SystemBase.html#Ghost_Entities_SystemBase_OnCleanup_Ghost_Entities_SystemAPI__
name: OnCleanup
nameWithType: SystemBase.OnCleanup
fullName: Ghost.Entities.SystemBase.OnCleanup
- uid: Ghost.Entities.SystemBase.OnStopRunning*
commentId: Overload:Ghost.Entities.SystemBase.OnStopRunning
href: Ghost.Entities.SystemBase.html#Ghost_Entities_SystemBase_OnStopRunning
name: OnStopRunning
nameWithType: SystemBase.OnStopRunning
fullName: Ghost.Entities.SystemBase.OnStopRunning
- uid: Ghost.Entities.SystemBase.OnStartRunning*
commentId: Overload:Ghost.Entities.SystemBase.OnStartRunning
href: Ghost.Entities.SystemBase.html#Ghost_Entities_SystemBase_OnStartRunning
name: OnStartRunning
nameWithType: SystemBase.OnStartRunning
fullName: Ghost.Entities.SystemBase.OnStartRunning