Exemplo n.º 1
0
 public Astronaut()
     : base("astronaut3_0")
 {
     IsAnimating = true;
     FrameSize = new Point(30, 37);
     _talkBox = new TalkBox(this);
     _weapon = new Rifle(this);
     SubSprites.Add(_weapon);
     SubSprites.Add(_talkBox);
     _weapon.ReLoad(5);
 }