C# 클래스 Myre.Entities.Services.Service

An abstract class implementation of IService.
상속: IService
파일 보기 프로젝트 열기: martindevans/Myre

공개 메소드들

메소드 설명
Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

Draw ( ) : void

Draws the service.

Initialise ( Scene scene ) : void

Initialises the service

Update ( float elapsedTime ) : void

Updates the service for a single frame.

보호된 메소드들

메소드 설명
Dispose ( bool disposeManagedResources ) : void

Releases unmanaged and - optionally - managed resources

메소드 상세

Dispose() 공개 메소드

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
리턴 void

Dispose() 보호된 메소드

Releases unmanaged and - optionally - managed resources
protected Dispose ( bool disposeManagedResources ) : void
disposeManagedResources bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
리턴 void

Draw() 공개 메소드

Draws the service.
public Draw ( ) : void
리턴 void

Initialise() 공개 메소드

Initialises the service
public Initialise ( Scene scene ) : void
scene Scene The scene to which this service belongs to.
리턴 void

Update() 공개 메소드

Updates the service for a single frame.
public Update ( float elapsedTime ) : void
elapsedTime float The number of seconds which have elapsed since the previous frame.
리턴 void