C# 클래스 Gruppe22.Backend.Tile

An abstract class representing a generic tile (i.e. blank floor)
상속: Backend.IHandleEvent
파일 보기 프로젝트 열기: propra13-orga/gruppe22 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
_parent object

공개 메소드들

메소드 설명
HandleEvent ( bool DownStream, Events eventID ) : void

Save ( XmlWriter xmlw ) : void

Abstract method to save a tile in a XML file

Tile ( object parent ) : System

An empty constructor (setting default values)

Update ( GameTime gameTime ) : void

Abstract update method.

메소드 상세

HandleEvent() 공개 메소드

public HandleEvent ( bool DownStream, Events eventID ) : void
DownStream bool
eventID Events
리턴 void

Save() 공개 메소드

Abstract method to save a tile in a XML file
public Save ( XmlWriter xmlw ) : void
xmlw System.Xml.XmlWriter the XmlWriter used for saving the file
리턴 void

Tile() 공개 메소드

An empty constructor (setting default values)
public Tile ( object parent ) : System
parent object The parent for a tile.
리턴 System

Update() 공개 메소드

Abstract update method.
public Update ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime
리턴 void

프로퍼티 상세

_parent 보호되어 있는 프로퍼티

protected object _parent
리턴 object