1
0
mirror of https://github.com/tacigar/maidroid.git synced 2024-11-08 19:20:30 +01:00
maidroid/modules/empty_module.lua
2016-06-01 21:59:28 +09:00

14 lines
487 B
Lua

------------------------------------------------------------
-- Copyright (c) 2016 tacigar
-- https://github.com/tacigar/maidroid
------------------------------------------------------------
-- 何もしないモジュール
maidroid.register_module("maidroid:empty_module", {
description = "Maidroid Module : Empty Module",
inventory_image = "maidroid_empty_module.png",
initialize = function(self) end,
finalize = function(self) end,
on_step = function(self, dtime) end,
})