1
0
mirror of https://github.com/tacigar/maidroid.git synced 2025-02-21 19:10:25 +01:00

15 lines
564 B
Lua
Raw Normal View History

2016-09-14 08:46:51 +09:00
------------------------------------------------------------
-- Copyright (c) 2016 tacigar. All rights reserved.
-- https://github.com/tacigar/maidroid
------------------------------------------------------------
maidroid.register_core("maidroid_core:empty", {
description = "maidroid core : empty",
inventory_image = "maidroid_core_empty.png",
on_start = function(self) end,
on_stop = function(self) end,
on_resume = function(self) end,
on_pause = function(self) end,
on_step = function(self, dtime) end,
})