Skip to content

Instantly share code, notes, and snippets.

View z16's full-sized avatar
💭
(let ((let '`(let ((let ',let)), let))) `(let ((let ',let)) ,let))

Stjepan Bakrac z16

💭
(let ((let '`(let ((let ',let)), let))) `(let ((let ',let)) ,let))
  • Munich, Germany
View GitHub Profile
@z16
z16 / addon_template.lua
Last active December 18, 2015 00:09
This is a template for a generic addon. Replace whichever parts necessary.
_addon.name = 'Template'
_addon.version = 0.1
_addon.command = 'template' -- Main command to use
_addon.commands = {'tp', 'temp'} -- Possible list of other commands, such as abbreviations
-- If you want to use a library, require it here. Check the addons/libs/ folder
-- for available libraries. LuaU is a library that will load a few other
-- libraries. It includes almost everything most addons will need.
require('luau')