summaryrefslogtreecommitdiffstatshomepage
path: root/plugins/dummy/init.lua
blob: 45f6d78d570426f487bb8245ab00a42095a8f687 (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 = {
	name = "dummy",
	version = "0.0.1",
	description = "A dummy example",
	license = "BSD-3-Clause",
	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", "" }}
	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