game_app.erl 226 B

12345678
  1. -module(game_app).
  2. -behaviour(application).
  3. -export([start/2, start/0, stop/0, stop/1]).
  4. start() -> start(init,[]).
  5. start(_StartType, _StartArgs) -> game_sup:start_link().
  6. stop() -> stop([]).
  7. stop(_State) -> game_sup:stop().