예제 #1
0
 public Text(string Text, Vector position, Color color, int Size)
 {
     Position   = position;
     this.color = color;
     this.Size  = Size;
     font       = new Font("Arial", Size);
     this.text  = Text;
     Le_Engine.RegisterText(this);
 }
예제 #2
0
 public void ShowSelf()
 {
     Le_Engine.RegisterText(this);
 }
예제 #3
0
 public void DestroySelf()
 {
     Le_Engine.UnRegisterText(this);
 }