⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 escenario.h

📁 Game developed with C++ and ALLEGRO
💻 H
字号:
#ifndef ESCENARIO_H
#define ESCENARIO_H
//#include "Cuadro.h"
#include "Momia.h"
#include "Item.h"
#include "Monito.h"
#define S1 1
#define SU 2
#define SD 3
#define SR 4
#define SL 5
#define C1 6
#define CU 7
#define CD 8
#define CR 9
#define CL 10
#define T 11
#define W 12

class Escenario{
      private:
              int anchura;
              int altura;
              int nivel;
      public:
             Cuadro tabla[6][6];
             Momia *mom;
             Personaje *mo;
             void cargar(int);
             int getAnchura();
             int getAltura();
             int getNivel();
             void dibujar(Cuadro tabla[6][6]);
             
             Escenario();
             Escenario(Personaje *,int,int,int, Cuadro tabla[6][6], Momia *);
             ~Escenario();    
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -