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

create farming core schema

This commit is contained in:
tacigar 2016-12-08 21:47:15 +09:00
parent 28531f624b
commit e694f394d1

View File

@ -1,4 +1,34 @@
------------------------------------------------------------
-- Copyright (c) 2016 tacigar. All rights reserved.
-- https://github.com/tacigar/maidroid
------------------------------------------------------------
------------------------------------------------------------
local state = {
}
local function on_start(self)
end
local function on_stop(self)
end
local on_resume = on_start
local on_pause = on_stop
local function on_step(self, dtime)
end
maidroid.register_core("maidroid_core:farming", {
description = "maidroid core : farming",
inventory_image = "maidroid_core_farming.png",
on_start = on_start,
on_stop = on_stop,
on_resume = on_resume,
on_pause = on_pause,
on_step = on_step,
})