2010-07-18 07:44:19 +08:00
|
|
|
%%-*- mode: erlang -*-
|
|
|
|
{application, egs, [
|
|
|
|
{description, "EGS online action-RPG game server"},
|
|
|
|
{vsn, "0.1"},
|
|
|
|
{modules, [
|
|
|
|
egs,
|
|
|
|
egs_app,
|
|
|
|
egs_sup,
|
2010-10-07 06:06:02 +08:00
|
|
|
egs_conf,
|
2010-10-08 00:11:29 +08:00
|
|
|
egs_seasons,
|
2010-10-08 23:30:24 +08:00
|
|
|
egs_items_db,
|
2010-10-09 02:56:48 +08:00
|
|
|
egs_shops_db,
|
2010-09-19 03:37:48 +08:00
|
|
|
egs_game_server,
|
2010-09-19 04:53:15 +08:00
|
|
|
egs_login_server,
|
2010-07-18 21:41:26 +08:00
|
|
|
egs_exit_mon,
|
2010-07-19 08:11:31 +08:00
|
|
|
egs_user_model,
|
2010-09-19 01:57:55 +08:00
|
|
|
egs_network,
|
|
|
|
egs_login,
|
|
|
|
egs_char_select,
|
|
|
|
egs_game,
|
2010-07-18 17:48:12 +08:00
|
|
|
reloader,
|
2010-07-18 20:08:11 +08:00
|
|
|
psu_game,
|
2010-07-18 16:51:08 +08:00
|
|
|
psu_patch,
|
2010-07-24 03:46:03 +08:00
|
|
|
psu_instance,
|
2010-08-19 07:53:18 +08:00
|
|
|
psu_proto,
|
2010-07-18 07:44:19 +08:00
|
|
|
psu_appearance,
|
|
|
|
psu_characters,
|
2010-08-17 00:31:01 +08:00
|
|
|
psu_party,
|
|
|
|
psu_npc,
|
2010-07-18 07:44:19 +08:00
|
|
|
psu_parser
|
|
|
|
]},
|
|
|
|
{registered, []},
|
|
|
|
{applications, [
|
|
|
|
kernel,
|
|
|
|
stdlib,
|
|
|
|
crypto,
|
|
|
|
ssl,
|
|
|
|
mnesia
|
|
|
|
]},
|
|
|
|
{mod, {egs_app, []}},
|
|
|
|
{env, []}
|
|
|
|
]}.
|