RedCore
Loading...
Searching...
No Matches
RawRead.h
Go to the documentation of this file.
1#pragma once
2
3#include <types.h>
4
5namespace red {
6
7 template <typename T>
8 inline T rawRead(const u8*& ptr) {
9 T val = *(T*)ptr;
10 ptr += sizeof(T);
11 return val;
12 }
13
14}
Definition ActorDonutBlock.h:5
T rawRead(const u8 *&ptr)
Definition RawRead.h:8