relz.awesome-wm-theme/modules/tasks.lua
Алексей Старовойтов 6578b120a1 Initial commit
2019-09-21 23:53:38 +03:00

33 lines
508 B
Lua

Tasks_prototype = function()
local this = {}
this.__public_static = {
-- Public Static Variables
-- Public Static Funcs
}
this.__private_static = {
-- Private Static Variables
-- Private Static Funcs
}
this.__public = {
-- Public Variables
key_bindings = {}
-- Public Funcs
}
this.__private = {
-- Private Variables
-- Private Funcs
}
this.__construct = function()
-- Constructor
end
return this
end
Tasks = createClass(Tasks_prototype)