This commit only updates the XCode project for the changes. A later commit each will update it for scons and MSVC. A few actual changes are mixed in: - Add a prefix header for a handful of common definitions - Moved current_cursor into the Cursor class as a static member - Removed the make_cursor_sword and make_cursor_watch functions - Include tests in the All target - Remove redundant -l flags for Common and Common-Party (since they're included in the Link phases anyway)
17 lines
446 B
C++
17 lines
446 B
C++
//
|
|
// view_dialogs.hpp
|
|
// BoE
|
|
//
|
|
// Created by Celtic Minstrel on 17-01-21.
|
|
//
|
|
//
|
|
|
|
#ifndef BOE_VIEW_DIALOGS_HPP
|
|
#define BOE_VIEW_DIALOGS_HPP
|
|
|
|
void put_item_info(class cDialog& me, const class cItem& s_i, const class cScenario& scen);
|
|
void put_monst_info(class cDialog& me, const class cMonster& store_m, const class cScenario& scen);
|
|
void put_monst_info(class cDialog& me, const class cCreature& store_m, const class cScenario& scen);
|
|
|
|
#endif
|