From e624dd431b60593b547da52af920aff53b6c1c36 Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Thu, 12 May 2022 15:37:42 -0400 Subject: [PATCH] tank_fluid and coordinate table types --- scada-common/types.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/scada-common/types.lua b/scada-common/types.lua index 372b1d3..95312d3 100644 --- a/scada-common/types.lua +++ b/scada-common/types.lua @@ -5,6 +5,19 @@ ---@class types local types = {} +---@class tank_fluid +local tank_fluid = { + name = "mekanism:empty_gas", + amount = 0 +} + +---@class coordinate +local coordinate = { + x = 0, + y = 0, + z = 0 +} + ---@alias rtu_t string types.rtu_t = { redstone = "redstone",