Jypeli  9
The simple game programming library
CustomDrawable.cs
Siirry tämän tiedoston dokumentaatioon.
2 
3 namespace Jypeli
4 {
8  public interface CustomDrawable
9  {
10  bool IsVisible { get; set; }
11  void Draw( Matrix parentTransformation );
12  }
13 }
Jypeli.CustomDrawable
Rajapinta olioille, joilla on oma Draw-metodi.
Definition: CustomDrawable.cs:9
Jypeli.Matrix
Microsoft.Xna.Framework.Matrix Matrix
Definition: Mouse.cs:36
Microsoft.Xna
Definition: JypeliContentManager.cs:6
Jypeli
Definition: Automobile.cs:5
Microsoft
Definition: JypeliContentManager.cs:6
Microsoft.Xna.Framework
Definition: JypeliContentManager.cs:6
Jypeli.CustomDrawable.IsVisible
bool IsVisible
Definition: CustomDrawable.cs:10
Jypeli.CustomDrawable.Draw
void Draw(Matrix parentTransformation)