You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
476 B
16 lines
476 B
#pragma once |
|
|
|
#include "utils/attributes.h" |
|
|
|
namespace devilution { |
|
|
|
/** Indicate if we only have access to demo data */ |
|
extern DVL_API_FOR_TEST bool gbIsSpawn; |
|
/** Indicate if we have loaded the Hellfire expansion data */ |
|
extern DVL_API_FOR_TEST bool gbIsHellfire; |
|
/** Indicate if we want vanilla savefiles */ |
|
extern DVL_API_FOR_TEST bool gbVanilla; |
|
/** Whether the Hellfire mode is required (forced). */ |
|
extern bool forceHellfire; |
|
|
|
} // namespace devilution
|
|
|