1
0
mirror of https://github.com/tacigar/maidroid.git synced 2025-06-28 05:50:20 +02:00
This commit is contained in:
tacigar
2016-06-01 21:59:28 +09:00
parent 5051654528
commit 04ef881e7f
16 changed files with 94 additions and 12 deletions

13
modules/empty_module.lua Normal file
View File

@ -0,0 +1,13 @@
------------------------------------------------------------
-- 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,
})