Very Basic Algorithm for XWii2
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[1] Load a config file into an ActionSet object

[2] Initialize wiiuse library and start polling to get events

[3] If an event has occured an InputState object is filled out and passed to a 
    corresponding execute_input() function (along with the corresponding 
    ActionSet object).

[4] For each initialized action in the ActionSet object, whether or not is 
    should be performed is determined by checking its condition against the 
    InputState object.
    
    Action is then performed if necessary.
    
    ActionSet Class can be extended to include all sorts of combinations and 
    such.
