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.
17 lines
328 B
17 lines
328 B
/** |
|
* @file quests/validation.hpp |
|
* |
|
* Interface of functions for validation of quest data. |
|
*/ |
|
#pragma once |
|
|
|
#include <cstdint> |
|
|
|
#include "objdat.h" |
|
#include "quests.h" |
|
|
|
namespace devilution { |
|
|
|
bool IsQuestDeltaValid(quest_id qidx, quest_state qstate, uint8_t qlog, int16_t qmsg); |
|
|
|
} // namespace devilution
|
|
|