1
0
mirror of https://github.com/tacigar/maidroid.git synced 2025-01-11 08:30:17 +01:00
maidroid/maidroid_core/cores/farming.lua

35 lines
699 B
Lua
Raw Normal View History

2016-12-08 13:42:51 +01:00
------------------------------------------------------------
-- Copyright (c) 2016 tacigar. All rights reserved.
-- https://github.com/tacigar/maidroid
2016-12-08 13:47:15 +01:00
------------------------------------------------------------
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,
})