mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-18 15:15:37 +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
|