You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3coop/apps/openmw-mp/Script/ArgsStore.hpp

26 lines
562 B
C++

//
// Created by koncord on 09.01.19.
//
#pragma once
#include <cstdint>
#include <variant>
#include <vector>
typedef std::variant<uint8_t,
int8_t,
uint16_t,
int16_t,
uint32_t,
int32_t,
uint64_t,
int64_t,
const char *,
void *,
float,
double,
bool> TArgVariant;
typedef std::vector<TArgVariant> TArgsStore;