Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Fork of el17dg by
Models/models.h
- Committer:
- Noximilien
- Date:
- 2019-05-06
- Revision:
- 37:6a2bf4488022
- Parent:
- 36:207ec7db8648
File content as of revision 37:6a2bf4488022:
#ifndef MODELS_H #define MODELS_H #include "sprite.h" extern const int spaceship1_width; extern const int spaceship1_height; extern const int enemy2_height; extern const int enemy2_width; extern const int enemy1_height; extern const int enemy1_width; extern const int PressAWidth; extern const int PressAHeight; /** Sprite Objects to use for other files. */ // Enemy and Boss sprites. extern const Sprite blast_sprite; extern const Sprite enemy2_sprite; extern const Sprite enemy2_half_exploded_sprite; extern const Sprite enemy2_exploded_sprite; extern const Sprite enemy1_sprite; extern const Sprite enemy1_quarter_exploded_sprite; extern const Sprite enemy1_half_exploded_sprite; extern const Sprite enemy1_second_quarter_exploded_sprite; extern const Sprite enemy1_fully_exploded_sprite; // Stars sprites. extern const Sprite small_star_sprite; extern const Sprite medium_star_sprite; extern const Sprite big_star_sprite; // NOT in use // Planet sprites. extern const Sprite planet1_sprite; // NOT in use // Intro sprites. extern const Sprite intro_line_one_sprite; extern const Sprite intro_line_one_stars_sprite; extern const Sprite intro_line_two_ships_sprite; extern const Sprite intro_line_two_sprite; extern const Sprite intro_line_three_sprite; // Game Over and You Died sprites. extern const Sprite game_over_sprite; extern const Sprite you_died_sprite; // Tutorial Arrows and Menu sprites. extern const Sprite tutorial_arrow_right_sprite; extern const Sprite tutorial_arrow_left_sprite; extern const Sprite menu_cursor_sprite; extern const Sprite Press_A_Icon_Sprite; // Player sprites. extern const Sprite player_spaceship1_sprite; extern const Sprite player_spaceship1_shield_sprite; #endif