aboutsummaryrefslogtreecommitdiff
path: root/src/Serialize.h
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-10-02 17:32:23 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2021-10-02 17:32:23 +0700
commit4aeff0886aa61ed3834ef4826aa1a1f3e99508b1 (patch)
tree0be178818e4ed9de7e70872c224ce73adaba8f6a /src/Serialize.h
parent7a4fdb3978c36e4309479806140f38669bcd3883 (diff)
downloadblackshades-4aeff0886aa61ed3834ef4826aa1a1f3e99508b1.tar.gz
Clean up unused functions and style2.4.0
Diffstat (limited to 'src/Serialize.h')
-rw-r--r--src/Serialize.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/Serialize.h b/src/Serialize.h
deleted file mode 100644
index 4ecb46d..0000000
--- a/src/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