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