2011-12-05 19:27:07 +01:00
|
|
|
Module
|
2012-01-05 02:28:29 +01:00
|
|
|
name: core_lib
|
2011-12-05 19:27:07 +01:00
|
|
|
description: Contains core lua classes, functions and constants used by other modules
|
|
|
|
author: OTClient team
|
|
|
|
website: https://github.com/edubart/otclient
|
2012-02-06 20:19:47 +01:00
|
|
|
autoload: true
|
|
|
|
autoload-antecedence: 10
|
2011-12-05 19:27:07 +01:00
|
|
|
|
|
|
|
onLoad: |
|
2012-02-06 05:39:52 +01:00
|
|
|
dofile 'ext/table'
|
|
|
|
dofile 'ext/string'
|
|
|
|
dofile 'ext/os'
|
|
|
|
dofile 'math/point'
|
|
|
|
dofile 'math/size'
|
|
|
|
dofile 'math/color'
|
|
|
|
dofile 'math/rect'
|
|
|
|
dofile 'const'
|
|
|
|
dofile 'util'
|
|
|
|
dofile 'globals'
|
|
|
|
dofile 'dispatcher'
|
|
|
|
dofile 'effects'
|
|
|
|
dofile 'settings'
|
|
|
|
dofile 'keyboard'
|
|
|
|
dofile 'mouse'
|
2012-02-05 23:42:35 +01:00
|
|
|
|