Jypeli 10
The simple game programming library
CustomDrawable.cs
Siirry tämän tiedoston dokumentaatioon.
1using Microsoft.Xna.Framework;
2
3namespace Jypeli
4{
8 public interface CustomDrawable
9 {
13 bool IsVisible { get; set; }
14
19 void Draw( Matrix parentTransformation );
20 }
21}
Rajapinta olioille, joilla on oma Draw-metodi.
void Draw(Matrix parentTransformation)
Piirtää olion ruudulle
bool IsVisible
Onko olio näkyvissä
Microsoft.Xna.Framework.Matrix Matrix
Definition: Mouse.cs:36