C# 클래스 Ypsilon.Core.Patterns.MVC.AModel

Abstract Model. Maintains the state, core data, and update logic of a model.
파일 보기 프로젝트 열기: ZaneDubya/YCPU 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
Controller AController
View AView

공개 메소드들

메소드 설명
Dispose ( ) : void
GetController ( ) : AController
GetView ( ) : AView
Initialize ( ) : void
Update ( float totalSeconds, float frameSeconds ) : void

보호된 메소드들

메소드 설명
CreateController ( ) : AController
CreateView ( ) : AView

메소드 상세

CreateController() 보호된 추상적인 메소드

protected abstract CreateController ( ) : AController
리턴 AController

CreateView() 보호된 추상적인 메소드

protected abstract CreateView ( ) : AView
리턴 AView

Dispose() 공개 추상적인 메소드

public abstract Dispose ( ) : void
리턴 void

GetController() 공개 메소드

public GetController ( ) : AController
리턴 AController

GetView() 공개 메소드

public GetView ( ) : AView
리턴 AView

Initialize() 공개 추상적인 메소드

public abstract Initialize ( ) : void
리턴 void

Update() 공개 추상적인 메소드

public abstract Update ( float totalSeconds, float frameSeconds ) : void
totalSeconds float
frameSeconds float
리턴 void

프로퍼티 상세

Controller 보호되어 있는 프로퍼티

protected AController,Ypsilon.Core.Patterns.MVC Controller
리턴 AController

View 보호되어 있는 프로퍼티

protected AView,Ypsilon.Core.Patterns.MVC View
리턴 AView