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
|
2012-02-20 03:27:08 +01:00
|
|
|
autoload-priority: 10
|
2012-03-23 14:48:05 +01:00
|
|
|
reloadable: false
|
2011-12-05 19:27:07 +01:00
|
|
|
|
2012-02-20 03:27:08 +01:00
|
|
|
@onLoad: |
|
2012-02-06 05:39:52 +01:00
|
|
|
dofile 'ext/table'
|
|
|
|
dofile 'ext/string'
|
|
|
|
dofile 'ext/os'
|
2012-03-18 14:34:39 +01:00
|
|
|
|
2012-02-06 05:39:52 +01:00
|
|
|
dofile 'math/point'
|
|
|
|
dofile 'math/size'
|
|
|
|
dofile 'math/color'
|
|
|
|
dofile 'math/rect'
|
2012-03-18 14:34:39 +01:00
|
|
|
|
2012-02-06 05:39:52 +01:00
|
|
|
dofile 'const'
|
|
|
|
dofile 'util'
|
|
|
|
dofile 'globals'
|
|
|
|
dofile 'settings'
|
|
|
|
dofile 'keyboard'
|
|
|
|
dofile 'mouse'
|
2012-02-05 23:42:35 +01:00
|
|
|
|
2012-02-20 03:27:08 +01:00
|
|
|
dofile 'ui/effects'
|
|
|
|
dofile 'ui/radiogroup'
|
|
|
|
dofile 'ui/tooltip'
|
|
|
|
|
|
|
|
dofile 'widgets/uiwidget'
|
|
|
|
dofile 'widgets/uibutton'
|
|
|
|
dofile 'widgets/uilabel'
|
|
|
|
dofile 'widgets/uicheckbox'
|
|
|
|
dofile 'widgets/uicombobox'
|
|
|
|
dofile 'widgets/uispinbox'
|
|
|
|
dofile 'widgets/uiprogressbar'
|
|
|
|
dofile 'widgets/uitabbar'
|
|
|
|
dofile 'widgets/uipopupmenu'
|
|
|
|
dofile 'widgets/uiwindow'
|
|
|
|
dofile 'widgets/uimessagebox'
|
2012-03-23 02:52:31 +01:00
|
|
|
dofile 'widgets/uisplitter'
|
2012-03-24 16:22:40 +01:00
|
|
|
dofile 'widgets/uiscrollbar'
|
2012-03-25 16:10:15 +02:00
|
|
|
dofile 'widgets/uiscrollarea'
|
2012-03-27 00:24:01 +02:00
|
|
|
dofile 'widgets/uiresizeborder'
|
2012-03-23 02:52:31 +01:00
|
|
|
|