summaryrefslogtreecommitdiff
path: root/src/blu_cat/com/binary_reader.hpp
diff options
context:
space:
mode:
authorFrederico Linhares <fred@linhares.blue>2025-04-14 20:16:34 -0300
committerFrederico Linhares <fred@linhares.blue>2025-04-14 20:16:34 -0300
commit8e9ca6eb1247982ccb112d3412a1c07d577af2bb (patch)
tree226749bd523e55083c85060f304382a6553a8548 /src/blu_cat/com/binary_reader.hpp
parent76c2fd91a71585bfccf8ae9e30834a37514de24f (diff)
feat Read and write signed integersHEADmaster
Diffstat (limited to 'src/blu_cat/com/binary_reader.hpp')
-rw-r--r--src/blu_cat/com/binary_reader.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/blu_cat/com/binary_reader.hpp b/src/blu_cat/com/binary_reader.hpp
index a17dc88..fec88b6 100644
--- a/src/blu_cat/com/binary_reader.hpp
+++ b/src/blu_cat/com/binary_reader.hpp
@@ -48,6 +48,15 @@ public:
UI64
read_ui64();
+ I8
+ read_i8();
+
+ I32
+ read_i32();
+
+ I64
+ read_i64();
+
F32
read_f32();