Arcade
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events
GameAPI.BudgetBoy.IRenderable Interface Reference

Interface for types that can be added to a Stage and automatically rendered each frame. More...

Inheritance diagram for GameAPI.BudgetBoy.IRenderable:
GameAPI.BudgetBoy.Entity GameAPI.BudgetBoy.Sprite GameAPI.BudgetBoy.Tilemap GameAPI.BudgetBoy.Text

Public Member Functions

void Render (Graphics graphics)
 Called once per frame while the Stage containing this IRenderable is active. More...
 

Detailed Description

Interface for types that can be added to a Stage and automatically rendered each frame.

Member Function Documentation

void GameAPI.BudgetBoy.IRenderable.Render ( Graphics  graphics)

Called once per frame while the Stage containing this IRenderable is active.

Parameters
graphicsGraphics peripheral to render to.

Implemented in GameAPI.BudgetBoy.Entity, GameAPI.BudgetBoy.Tilemap, GameAPI.BudgetBoy.Text, and GameAPI.BudgetBoy.Sprite.