mirror of
https://github.com/Relz/awesome-wm-theme.git
synced 2026-09-10 07:26:41 -04:00
33 lines
508 B
Lua
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)
|