mirror of
https://github.com/S4mpsa/InfOS.git
synced 2025-08-03 09:56:01 -04:00
23 lines
381 B
Lua
23 lines
381 B
Lua
-- Import section
|
|
Inherits = require("utils.inherits")
|
|
MockSingleBlock = require("data.mock.mock-single-block")
|
|
--
|
|
|
|
local MockMiner =
|
|
Inherits(
|
|
MockSingleBlock,
|
|
{
|
|
name = "MockMiner"
|
|
}
|
|
)
|
|
|
|
function MockMiner.getSensorInformation()
|
|
return {
|
|
"§9Multiblock Miner§r",
|
|
"Work Area: §a2x2§r Chunks",
|
|
n = 2
|
|
}
|
|
end
|
|
|
|
return MockMiner
|