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.
15 lines
307 B
15 lines
307 B
|
2 months ago
|
#pragma once
|
||
|
|
|
||
|
|
#include <string_view>
|
||
|
|
|
||
|
|
namespace devilution {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Triggers a Lua event by name.
|
||
|
|
* This is a minimal header for code that only needs to trigger events.
|
||
|
|
*/
|
||
|
|
void LuaEvent(std::string_view name);
|
||
|
|
void LuaEvent(std::string_view name, std::string_view arg);
|
||
|
|
|
||
|
|
} // namespace devilution
|