init.bmx 536 B

123456789101112131415161718192021
  1. '===============================================================================
  2. ' Little Shooty Test Thing
  3. ' Code & Stuff by Richard Olpin ([email protected])
  4. '===============================================================================
  5. ' Initialisation
  6. '===============================================================================
  7. Function Init()
  8. HideMouse()
  9. JoyCount()
  10. TPlayer.CreatePlayer()
  11. Tbullet.image=LoadImage("gfx/player_shot.png", MASKEDIMAGE)
  12. CreateBG()
  13. TParticle.Init()
  14. TEnemy.Init()
  15. InitSound()
  16. EndFunction