aboutsummaryrefslogtreecommitdiff
path: root/src/utils/types.h
blob: 4f824f64fdd5a4ec20fa4dfae68a26eda2849740 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SYSC_PLAYGROUND_TYPES
#define SYSC_PLAYGROUND_TYPES

#include <cstdint>

using u8 = std::uint8_t;
using u32 = std::uint32_t;
using u64 = std::uint64_t;

using usize = std::size_t;

#endif