• Fichier: Main.h
  • Path: /dungeon_ascii/DungeonASCII/Main.h
  • File size: 251 bytes
  • MIME-type: text/x-c
  • Charset: utf-8
 
Retour
#ifndef _MAIN_PROGRAM_H_INCLUDED
#define _MAIN_PROGRAM_H_INCLUDED

#include <conio.h>

#include "Sector.h"
#include "Player.h"
#include "Display.h"

enum KeyCode {
	ESCAPE = 27,
	LEFT = 75,
	RIGHT = 77,
	UP = 72,
	DOWN = 80
};

#endif