mirror of
https://github.com/holub/mame
synced 2025-04-26 18:23:08 +03:00
21 lines
408 B
Lua
21 lines
408 B
Lua
local exports = {}
|
|
exports.name = "dummy"
|
|
exports.version = "0.0.1"
|
|
exports.description = "A dummy example"
|
|
exports.license = "MIT"
|
|
exports.author = { name = "Miodrag Milanovic" }
|
|
|
|
local dummy = exports
|
|
|
|
function dummy.startplugin()
|
|
emu.register_start(function()
|
|
print("Starting " .. emu.gamename())
|
|
end)
|
|
|
|
emu.register_stop(function()
|
|
print("Exiting " .. emu.gamename())
|
|
end)
|
|
end
|
|
|
|
return exports
|