C# Класс Platformer.PlatformerGame

This is the main type for your game
Наследование: Microsoft.Xna.Framework.Game
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
PlatformerGame ( ) : System

Защищенные методы

Метод Описание
Draw ( GameTime gameTime ) : void

Draws the game from background to foreground.

LoadContent ( ) : void

LoadContent will be called once per game and is the place to load all of your content.

Update ( GameTime gameTime ) : void

Allows the game to run logic such as updating the world, checking for collisions, gathering input, and playing audio.

Приватные методы

Метод Описание
DrawHud ( ) : void
DrawShadowedString ( SpriteFont font, string value, Vector2 position, Color color ) : void
HandleInput ( ) : void
LoadStory ( ) : void

Loads a story file which lists all of the levels that should be preloaded.

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

Draw() защищенный Метод

Draws the game from background to foreground.
protected Draw ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime Provides a snapshot of timing values.
Результат void

LoadContent() защищенный Метод

LoadContent will be called once per game and is the place to load all of your content.
protected LoadContent ( ) : void
Результат void

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

public PlatformerGame ( ) : System
Результат System

Update() защищенный Метод

Allows the game to run logic such as updating the world, checking for collisions, gathering input, and playing audio.
protected Update ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime Provides a snapshot of timing values.
Результат void