mame/plugins/dummy/init.lua
2016-03-05 11:18:08 +01:00

23 lines
492 B
Lua

-- license:BSD-3-Clause
-- copyright-holders:Miodrag Milanovic
local exports = {}
exports.name = "dummy"
exports.version = "0.0.1"
exports.description = "A dummy example"
exports.license = "The BSD 3-Clause License"
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