Main public logs

From Space Station 14 Wiki

Combined display of all available logs of Space Station 14 Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 07:56, 24 May 2025 Aliser talk contribs created page Module:Color/utils/class (Created page with "-- Code based on: -- http://lua-users.org/wiki/SimpleLuaClasses --- Helper function to create classes -- -- @usage local Color = class(function () --constructor end) -- @usage local Color2 = class( -- Color, -- function () --constructor end, -- { prop_a = "some value" } -- ) local function class(base, init, defaults) local c = defaults or {} -- a new class instance if not init and type(base) == 'function' then init = base base = nil el...")