17 lines
269 B
C++
17 lines
269 B
C++
/**
|
|
* @file doom.h
|
|
*
|
|
* Interface of the map of the stars quest.
|
|
*/
|
|
#pragma once
|
|
|
|
#include "engine.h"
|
|
|
|
namespace devilution {
|
|
|
|
extern bool DoomFlag;
|
|
void doom_init();
|
|
void doom_close();
|
|
void doom_draw(const Surface &out);
|
|
|
|
} // namespace devilution
|