#ifndef __WORLD_H__ #define __WORLD_H__ #include "ps1bsp.h" typedef struct { ps1bsp_header_t *header; ps1bsp_vertex_t *vertices; ps1bsp_triangle_t *triangles; ps1bsp_face_t *faces; } world_t; void world_load(const u_long *data, world_t *world); void world_draw(const world_t *world); #endif // __WORLD_H__