mirror of
https://github.com/edubart/otclient.git
synced 2025-05-01 10:09:21 +02:00

* Split game module into game and game_interface * Move core_lib to corelib * Move miniwindow to corelib * Introduce init.lua script for initializing the client, giving much more flexibility * OTClient is no longer Application derived and is much simpler
41 lines
735 B
Plaintext
41 lines
735 B
Plaintext
Module
|
|
name: game
|
|
description: Contains game related classes
|
|
author: OTClient team
|
|
website: www.otclient.info
|
|
|
|
dependencies:
|
|
- client_extended
|
|
- client_background
|
|
- game_tibiafiles
|
|
|
|
load-later:
|
|
- game_interface
|
|
- game_textmessage
|
|
- game_console
|
|
- game_outfit
|
|
- game_healthbar
|
|
- game_skills
|
|
- game_inventory
|
|
- game_combatcontrols
|
|
- game_containers
|
|
- game_viplist
|
|
- game_battle
|
|
- game_minimap
|
|
- game_hotkeys
|
|
- game_npctrade
|
|
- game_textbooks
|
|
- game_playertrade
|
|
- game_questlog
|
|
- game_ruleviolation
|
|
- game_bugreport
|
|
- game_shaders
|
|
|
|
@onLoad: |
|
|
dofile 'const'
|
|
|
|
dofile 'protocollogin'
|
|
|
|
dofile 'creature'
|
|
dofile 'player'
|