/src/MenuEnemy.h
http://github.com/clintbellanger/flare · C Header · 53 lines · 25 code · 7 blank · 21 comment · 0 complexity · 44d8f3e9b12f2f4f885c3045af59948b MD5 · raw file
- /*
- Copyright 2011 Pavel Kirpichyov (Cheshire)
- This file is part of FLARE.
- FLARE is free software: you can redistribute it and/or modify it under the terms
- of the GNU General Public License as published by the Free Software Foundation,
- either version 3 of the License, or (at your option) any later version.
- FLARE is distributed in the hope that it will be useful, but WITHOUT ANY
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- PARTICULAR PURPOSE. See the GNU General Public License for more details.
- You should have received a copy of the GNU General Public License along with
- FLARE. If not, see http://www.gnu.org/licenses/
- */
- /**
- * MenuEnemy
- *
- * Handles the display of the Enemy info of the screen
- */
- #ifndef MENU_ENEMY_H
- #define MENU_ENEMY_H
- #include "StatBlock.h"
- #include "Utils.h"
- #include "FontEngine.h"
- #include "SharedResources.h"
- #include "Enemy.h"
- #include <SDL.h>
- #include <SDL_image.h>
- const int MENU_ENEMY_TIMEOUT = FRAMES_PER_SEC * 10;
- class MenuEnemy {
- private:
- SDL_Surface *background;
- SDL_Surface *bar_hp;
- public:
- MenuEnemy();
- ~MenuEnemy();
- Enemy *enemy;
- void loadGraphics();
- void handleNewMap();
- void logic();
- void render();
- int timeout;
- };
- #endif