%%%=============================================================================
%%% @author Rodrigo Cacilhας <montegasppa@cacilhas.cc>
%%%         [http://cacilhas.cc/kodumaro/]
%%% @copyright ©2016, Rodrigo Cacilhας
%%% @end
%%%=============================================================================
-module(mh_guest).
-author('montegasppa@cacilhas.cc').
-export([choose/0, change/2]).

-include("mh.hrl").

-spec choose() -> door().
-spec change(Original :: door(), Alternative :: door()) -> door().


%%%=============================================================================
choose() -> lists:nth(random:uniform(3), [a, b, c]).


-ifdef(change).
change(_Original, Alternative) -> Alternative.
-else.
change(Original, _Alternative) -> Original.
-endif.
