C# Класс MyGame.CDrawableComponent

This class represent a custom Drawable Component that has a CModel that handle drawing and a Unit that hanlde updating of the Drawable game component.
Наследование: Microsoft.Xna.Framework.DrawableGameComponent
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
cModel CModel
unit Unit

Защищенные свойства (Protected)

Свойство Тип Описание
myGame MyGame

Открытые методы

Метод Описание
CDrawableComponent ( MyGame game, Unit unit, CModel model ) : System
Draw ( GameTime gameTime ) : void

This method renders the current state.

Update ( GameTime gameTime ) : void

Allows the game component to update itself.

Описание методов

CDrawableComponent() публичный Метод

public CDrawableComponent ( MyGame game, Unit unit, CModel model ) : System
game MyGame
unit Unit
model CModel
Результат System

Draw() публичный Метод

This method renders the current state.
public Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime The elapsed game time.
Результат void

Update() публичный Метод

Allows the game component to update itself.
public Update ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime Provides a snapshot of timing values.
Результат void

Описание свойств

cModel публичное свойство

public CModel,MyGame cModel
Результат CModel

myGame защищенное свойство

protected MyGame,MyGame myGame
Результат MyGame

unit публичное свойство

public Unit,MyGame unit
Результат Unit