aboutsummaryrefslogtreecommitdiff
path: root/Source/Serialize.h
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-06-17 14:20:54 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2021-06-17 14:22:53 +0700
commit602a0c5951050e7cce645534cb4f136cf9f4fee4 (patch)
treee70e63b0b0058830e58c244ad917bc892c10418f /Source/Serialize.h
parent094e12df1ebb81d304803be4b274546384ec117c (diff)
downloadblackshades-602a0c5951050e7cce645534cb4f136cf9f4fee4.tar.gz
Rename source and build directory1.1.1
Diffstat (limited to 'Source/Serialize.h')
-rw-r--r--Source/Serialize.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/Serialize.h b/Source/Serialize.h
deleted file mode 100644
index 4ecb46d..0000000
--- a/Source/Serialize.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef SERIALIZE_H
-#define SERIALIZE_H
-
-/* these all read big-endian data */
-
-int ReadBool(int fd, int count, bool *b);
-int ReadShort(int fd, int count, short *s);
-int ReadInt(int fd, int count, int *s);
-int ReadFloat(int fd, int count, float *f);
-int ReadXYZ(int fd, int count, XYZ *xyz);
-int ReadTexturedTriangle(int fd, int count, TexturedTriangle *tt);
-
-#endif