示例#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);
 }