summaryrefslogtreecommitdiffstatshomepage
path: root/plugins/dummy/init.lua
blob: 89ba95a7f8665a2167320e1b98960b49d5f83c75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
-- 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()
		emu.print_verbose("Starting " .. emu.gamename())
	end)

	emu.register_stop(function()
		emu.print_verbose("Exiting " .. emu.gamename())
	end)

	local function menu_populate()
		return {{ "This is a", "test", "off" }, { "Also a", "test", 0 }}
	end

	local function menu_callback(index, event)
		emu.print_verbose("index: " .. index .. " event: " .. event)
		return false
	end

	emu.register_menu(menu_callback, menu_populate, "Dummy")
end

return exports