NouVeL/NVL/Common.h

21 lines
329 B
C
Raw Normal View History

2021-12-17 01:05:38 -05:00
#pragma once
2022-08-18 12:17:43 -04:00
#include <cstdint>
typedef float f32;
typedef double f64;
typedef int8_t i8;
typedef uint8_t u8;
typedef int16_t i16;
typedef uint16_t u16;
typedef int32_t i32;
typedef uint32_t u32;
typedef int64_t i64;
typedef uint64_t u64;
#include <string>
2021-12-17 01:05:38 -05:00
namespace NVL {
2022-08-18 12:17:43 -04:00
using String = std::wstring;
using Number = f32;
2021-12-17 01:05:38 -05:00
}