mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-12 23:44:06 +00:00
12 lines
259 B
C
12 lines
259 B
C
|
#ifndef _THREAD_H_
|
||
|
#define _THREAD_H_
|
||
|
|
||
|
#include <pspkernel.h>
|
||
|
|
||
|
extern SceUID sound_thread;
|
||
|
extern qboolean threads_should_quit;
|
||
|
|
||
|
extern void Sys_InitThreads(void);
|
||
|
extern void Thread_UpdateSound(vec3_t origin, vec3_t forward, vec3_t right, vec3_t up);
|
||
|
|
||
|
#endif
|