Skip to content

A collection of Lua utilities used in my projects.

License

Notifications You must be signed in to change notification settings

satom99/lua_utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Lua utils

A collection of Lua utilities used in my projects.

class.lua

Module containing class hineritance and method declaration using the least resources possible.
local animal = class()
animal.friendly = true

local dinosaur = class(animal)
dinosaur.extinct = true

local pet = dinosaur()
print(pet.friendly) -- true
print(pet.extinct) -- true
Further documentation can be found here.

About

A collection of Lua utilities used in my projects.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages