summaryrefslogtreecommitdiff
path: root/common/class.lua
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2023-06-18 22:28:37 +0100
committerubq323 <ubq323@ubq323.website>2023-06-18 22:28:37 +0100
commitf55c9f415a081a175e48b51db894f23e59ce47a2 (patch)
treeee63f98d5c4f1a2a11e9800ced9c2861eb3085a7 /common/class.lua
parent598bd4332deddd5f4c506689cbd136f495835ea7 (diff)
fix line lengths
Diffstat (limited to 'common/class.lua')
-rw-r--r--common/class.lua9
1 files changed, 5 insertions, 4 deletions
diff --git a/common/class.lua b/common/class.lua
index f5cd46e..8fb84b0 100644
--- a/common/class.lua
+++ b/common/class.lua
@@ -1,8 +1,9 @@
-- currently a class is a table T with T.__index = T
--- then to make an instance of this class, we do setmetatable(instance,T)
--- this should be fine for anything we wish to do. it is possible we will eventually
--- split this into two separate tables though, perhaps? i don't see why we would ever
--- do this though.
+-- then to make an instance of this class, we do
+-- setmetatable(instance,T)
+-- this should be fine for anything we wish to do.
+-- it is possible we will eventually split this into two separate
+-- tables perhaps? i don't see why we would ever do that though
local function class()
local T = {}