34 lines
471 B
Erlang
34 lines
471 B
Erlang
%%-*- mode: erlang -*-
|
|
{application, egs, [
|
|
{description, "EGS online action-RPG game server"},
|
|
{vsn, "0.1"},
|
|
{modules, [
|
|
egs,
|
|
egs_app,
|
|
egs_sup,
|
|
egs_exit_mon,
|
|
egs_user_model,
|
|
reloader,
|
|
psu_game,
|
|
psu_login,
|
|
psu_patch,
|
|
psu_instance,
|
|
egs_proto,
|
|
psu_appearance,
|
|
psu_characters,
|
|
psu_party,
|
|
psu_npc,
|
|
psu_parser
|
|
]},
|
|
{registered, []},
|
|
{applications, [
|
|
kernel,
|
|
stdlib,
|
|
crypto,
|
|
ssl,
|
|
mnesia
|
|
]},
|
|
{mod, {egs_app, []}},
|
|
{env, []}
|
|
]}.
|