-
Notifications
You must be signed in to change notification settings - Fork 0
Lib
github-actions[bot] edited this page Aug 26, 2024
·
1 revision
Protos: | Table | Base | global table used to store classes |
Config: | Table | Config | self explanatory |
rbx: | Boolean | Base | checks if it's in a luau environment |
baseprint: | Function | Base | used for tostring stuff |
class: | Function
| Keyword | used for creating new class prototypes |
new: | Function | Keyword | used for creating new class instances |
extend: | Function | Keyword | used for creating new classes off of another |
getclass: | Function | Method | gets a class prototype |
isa: | Function | Method | checks if a class instance matches up with a name or Prototype |
dump: | Function | Misc | cooler print for tables and class instances |
fid: | Function | Misc | gets function ids |
fname: | Function | Misc | gets function names |
pad: | Function | Misc | pads strings with content |
rawtostring: | Function | Misc | gets the raw tostring returns of something, ignoring __tostring in tables |
shallow: | Function | Misc | creates a shallow copy of tables |
tid: | Function | Misc | gets table ids |
__metaindex: | Function | Event | __index function for class instances |
__metanewindex: | Function | Event | __newindex function for class instances |
__metatostring: | Function | Event | __tostring function for class instances |
__protoindex: | Function | Event | __index function for Prototypes |
__protonewindex: | Function | Event | __newindex function for Prototypes |
Prototype: | Metatable | Class | type for class Prototypes |
PrototypeItem: | Metatable | Class | type for class properties |
Object: | Table | Class | lets you get and set PrototypeItems |