mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-04-03 08:51:08 +00:00
Move rev.h into the client.
This commit is contained in:
parent
5bff7e1568
commit
d328aa9a9e
6 changed files with 13 additions and 11 deletions
|
@ -318,7 +318,7 @@ set(Client-Source
|
|||
${CLIENT_SRC_DIR}/sound/sound.c
|
||||
${CLIENT_SRC_DIR}/sound/wave.c
|
||||
${CLIENT_SRC_DIR}/vid/glimp_sdl.c
|
||||
${CLIENR_SRC_DIR}/vid/vid.c
|
||||
${CLIENT_SRC_DIR}/vid/vid.c
|
||||
${COMMON_SRC_DIR}/argproc.c
|
||||
${COMMON_SRC_DIR}/clientserver.c
|
||||
${COMMON_SRC_DIR}/collision.c
|
||||
|
@ -355,7 +355,6 @@ set(Client-Header
|
|||
${CLIENT_SRC_DIR}/header/client.h
|
||||
${CLIENT_SRC_DIR}/header/console.h
|
||||
${CLIENT_SRC_DIR}/header/keyboard.h
|
||||
${CLIENT_SRC_DIR}/header/ref.h
|
||||
${CLIENT_SRC_DIR}/header/screen.h
|
||||
${CLIENT_SRC_DIR}/input/header/input.h
|
||||
${CLIENT_SRC_DIR}/menu/header/qmenu.h
|
||||
|
@ -363,6 +362,7 @@ set(Client-Header
|
|||
${CLIENT_SRC_DIR}/sound/header/qal.h
|
||||
${CLIENT_SRC_DIR}/sound/header/sound.h
|
||||
${CLIENT_SRC_DIR}/sound/header/vorbis.h
|
||||
${CLIENT_SRC_DIR}/vid/header/ref.h
|
||||
${CLIENT_SRC_DIR}/vid/header/vid.h
|
||||
${COMMON_SRC_DIR}/header/common.h
|
||||
${COMMON_SRC_DIR}/header/crc.h
|
||||
|
|
|
@ -47,15 +47,17 @@
|
|||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include "ref.h"
|
||||
#include "screen.h"
|
||||
#include "keyboard.h"
|
||||
#include "console.h"
|
||||
#include "../../common/header/common.h"
|
||||
|
||||
#include "../sound/header/sound.h"
|
||||
#include "../sound/header/vorbis.h"
|
||||
#include "../vid/header/ref.h"
|
||||
#include "../vid/header/vid.h"
|
||||
|
||||
#include "screen.h"
|
||||
#include "keyboard.h"
|
||||
#include "console.h"
|
||||
|
||||
typedef struct
|
||||
{
|
||||
qboolean valid; /* cleared if delta parsing was invalid */
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
*/
|
||||
|
||||
|
||||
#include "../../header/ref.h"
|
||||
#include "../ref_shared.h"
|
||||
#include "header/local.h"
|
||||
|
||||
#define HANDMADE_MATH_IMPLEMENTATION
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#ifndef SRC_CLIENT_REFRESH_REF_SHARED_H_
|
||||
#define SRC_CLIENT_REFRESH_REF_SHARED_H_
|
||||
|
||||
#include "../header/ref.h"
|
||||
#include "../vid/header/ref.h"
|
||||
|
||||
/*
|
||||
* skins will be outline flood filled and mip mapped
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
*/
|
||||
|
||||
#include "../../common/header/common.h"
|
||||
#include "../../client/header/ref.h"
|
||||
#include "header/ref.h"
|
||||
|
||||
#include <SDL2/SDL.h>
|
||||
#include <SDL2/SDL_video.h>
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
#ifndef CL_REF_H
|
||||
#define CL_REF_H
|
||||
|
||||
#include "../../common/header/common.h"
|
||||
#include "../vid/header/vid.h"
|
||||
#include "../../../common/header/common.h"
|
||||
#include "vid.h"
|
||||
|
||||
#define MAX_DLIGHTS 32
|
||||
#define MAX_ENTITIES 128
|
Loading…
Reference in a new issue