Rename osx directory to src since it's now the official source base

This commit is contained in:
2014-12-28 12:12:38 -05:00
parent ca15b2781e
commit af0ee110c6
228 changed files with 0 additions and 0 deletions

37
src/boe.actions.h Normal file
View File

@@ -0,0 +1,37 @@
#ifndef BOE_GAME_ACTIONS_H
#define BOE_GAME_ACTIOSN_H
#include <SFML/Window/Event.hpp>
#include "location.h"
#include "simpletypes.h"
void init_screen_locs();
bool prime_time();
bool handle_action(sf::Event event);
void handle_monster_actions(bool& need_redraw, bool& need_reprint);
bool someone_awake();
void handle_menu_spell(short spell_picked,short spell_type) ;
void initiate_outdoor_combat(short i);
bool handle_keystroke(sf::Event& event);
void do_load();
void post_load();
void do_save(short mode);
void increase_age();
void handle_hunting();
void switch_pc(short which);
void drop_pc(short which);
void handle_death();
void start_new_game();
location get_cur_direction(location the_point);
bool outd_move_party(location destination,bool forced);
bool town_move_party(location destination,short forced);
bool someone_poisoned();
short nearest_monster();
void setup_outdoors(location where);
short get_outdoor_num();
short count_walls(location loc);
bool is_sign(ter_num_t ter);
bool check_for_interrupt();
#endif