You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
347 B
16 lines
347 B
#ifndef __COMMON_H__
|
|
#define __COMMON_H__
|
|
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <psxapi.h>
|
|
#include <psxetc.h>
|
|
#include <psxgte.h>
|
|
#include <psxgpu.h>
|
|
|
|
#define RotMatrixQ RotMatrix // TODO: temporary hack to allow Quake-specific code without implementation
|
|
|
|
extern VECTOR cam_pos;
|
|
extern SVECTOR cam_rot;
|
|
|
|
#endif // __COMMON_H__
|