]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - vpk.h
Merge MR 'Make trace entity culling optional for spectators'
[xonotic/darkplaces.git] / vpk.h
diff --git a/vpk.h b/vpk.h
index 4271ab30d7aabf3f352e0d7514dc0d1fe780fffe..3490766f23227fd7195e8d3c3d7c7702cbb44de8 100644 (file)
--- a/vpk.h
+++ b/vpk.h
@@ -1,5 +1,5 @@
 /*
-Copyright (C) 2021 David Knapp (Cloudwalk)
+Copyright (C) 2020-2021 David Knapp (Cloudwalk)
 
 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
@@ -18,8 +18,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 */
 
-#include "qtypes.h"
-#include "qdefs.h"
+#ifndef VPK_H
+#define VPK_H
+
+#include <stdint.h>
 
 /*
  * The VPK format is Valve's package format for Source engine games,
@@ -96,3 +98,5 @@ typedef struct dvpk_signature_entry_s
        uint32_t signaturesize; // Always 128
        int8_t signature[128];
 } dvpk_signature_entry_t;
+
+#endif