aboutsummaryrefslogtreecommitdiff
path: root/var.lua
diff options
context:
space:
mode:
author1029chris <1029chris@gmail.com>2016-03-08 14:47:44 -0800
committer1029chris <1029chris@gmail.com>2016-03-08 14:47:44 -0800
commit414afd442a21455027f052e5cc849091d60a777d (patch)
tree007826967e2a2c0b80a576f3185f9b992cd14d5b /var.lua
parent5d8f2d1bf5bfdf69ee6218aaddb19ffef8d18005 (diff)
Starting to implement chat.
Diffstat (limited to 'var.lua')
-rw-r--r--var.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/var.lua b/var.lua
index 5313912..c3c4e1e 100644
--- a/var.lua
+++ b/var.lua
@@ -103,6 +103,7 @@ function loadVar()
colors.win.normal = {192,192,192}
colors.font = {}
colors.font.dark = {50,50,50}
+ colors.font.friend = {240,10,10}
notify = {}
notify.yes = false
notify.title = ""
@@ -112,4 +113,7 @@ function loadVar()
notify.x = sys.w-258
notify.y = sys.h-135
notify.timer = 0
+ msg = {}
+ msg.new = false
+ msg.msgs = {}
end