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)
23 lines
365 B
C++
23 lines
365 B
C++
/*
|
|
* soundtool.h
|
|
* BoE
|
|
*
|
|
* Created by Celtic Minstrel on 16/04/09.
|
|
*
|
|
*/
|
|
|
|
#ifndef _SOUNDTOOL_H
|
|
#define _SOUNDTOOL_H
|
|
|
|
#include <SFML/Audio.hpp>
|
|
|
|
typedef signed int snd_num_t;
|
|
void init_snd_tool();
|
|
bool sound_going(snd_num_t which_s);
|
|
void play_sound(short which, sf::Time delay = sf::Time());
|
|
void one_sound(short which);
|
|
|
|
void clear_sound_memory();
|
|
|
|
#endif
|