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-07-18 21:41:26 +08:00
|
|
|
egs_exit_mon,
|
2010-07-18 17:48:12 +08:00
|
|
|
reloader,
|
2010-07-18 07:44:19 +08:00
|
|
|
egs_cron,
|
|
|
|
egs_db,
|
2010-07-18 20:08:11 +08:00
|
|
|
psu_game,
|
2010-07-18 18:54:59 +08:00
|
|
|
psu_login,
|
2010-07-18 16:51:08 +08:00
|
|
|
psu_patch,
|
2010-07-18 07:44:19 +08:00
|
|
|
egs_proto,
|
|
|
|
psu_appearance,
|
|
|
|
psu_characters,
|
|
|
|
psu_missions,
|
|
|
|
psu_parser
|
|
|
|
]},
|
|
|
|
{registered, []},
|
|
|
|
{applications, [
|
|
|
|
kernel,
|
|
|
|
stdlib,
|
|
|
|
crypto,
|
|
|
|
ssl,
|
|
|
|
mnesia
|
|
|
|
]},
|
|
|
|
{mod, {egs_app, []}},
|
|
|
|
{env, []}
|
|
|
|
]}.
|