Пример #1
0
// Draw our little universe
void Draw(void)
{
  clear();

  DrawShip();
  DrawShots();

  screen_update();
}
Пример #2
0
//Public Methods
void Player::Draw(void)
{
	if (m_Active && !m_Hit)
	{
		pShip->Draw(&ShipColor);

		if (m_Thrust)
			DrawThrust();
	}
	else if (m_ExplosionOn)
		pShip->DrawExplosion();

	DrawShots();
}