mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-28 09:05:38 +00:00
13 lines
261 B
C
13 lines
261 B
C
|
#pragma once
|
||
|
#ifndef ES_CORE_SCRIPTING_H
|
||
|
#define ES_CORE_SCRIPTING_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace Scripting
|
||
|
{
|
||
|
void fireEvent(const std::string& eventName, const std::string& arg1="", const std::string& arg2="");
|
||
|
} // Scripting::
|
||
|
|
||
|
#endif //ES_CORE_SCRIPTING_H
|