LibStub Library
LibStub is a simple versioning stub meant for use in Libraries. It is meant to be a cross-community library sharing system.https://www.wowace.com/projects/libstubExample usage:Add the following t...
LibStub is a simple versioning stub meant for use in Libraries. It is meant to be a cross-community library sharing system.
https://www.wowace.com/projects/libstub
Example usage:
Add the following to your .mod dependencies along with whatever other libraries that also use libstub:
<Dependencies>
<Dependency name="LibStub" />
</Dependencies>
Registering your addon with LibStub:
local lib = LibStub:NewLibrary("LibTest-1.0", 1)
if not lib then return end -- already loaded and no upgrade necessary
function lib:doSomething()
return "something"
end
Getting a library:
local lib = LibStub("LibTest-1.0")
lib.doSomething()
- Status
- Approved
- Latest
- 1.4.0
- Game version
- 1.4.8
- Downloads
- 1,842
- Original author
- ace
1.4.0
stableLibStub is a simple versioning stub meant for use in Libraries.
| Version | Channel | Status | Published | Size | |
|---|---|---|---|---|---|
| 1.4.0 | stable | Published | 29 Sep 2020 | 2 KB |
LibStub is a simple versioning stub meant for use in Libraries.
LibStub · 2 files
· by ace No dependencies.
- Original author: ace
If this is your addon you can claim it.
Log in to claim it.
No comments yet.
Log in to comment.