Tapioca Engine 1.0
Motor de videojuegos creado por Bubble Studios
Cargando...
Buscando...
Nada coincide
typedefs
Referencia del archivo componentDefs.h
#include <string>
#include <unordered_map>
#include <variant>

Ir al código fuente de este archivo.

typedefs

using CompValue = std::variant<char, int, float, bool, std::string, std::nullptr_t>
 
using CompMap = std::unordered_map<std::string, CompValue>
 
typedef void(__cdecl * EntryPointInit) ()
 
typedef const char *(__cdecl * EntryPointGetWindowName) ()
 
typedef const char *(__cdecl * EntryPointGetInitScene) ()
 
typedef bool(__cdecl * EntryPointGetFullScreen) ()
 
typedef void(__cdecl * EntryPointGetWindowSize) (uint32_t &, uint32_t &)
 

Documentación de «typedef»

◆ CompMap

using CompMap = std::unordered_map<std::string, CompValue>

◆ CompValue

using CompValue = std::variant<char, int, float, bool, std::string, std::nullptr_t>

◆ EntryPointGetFullScreen

typedef bool(__cdecl * EntryPointGetFullScreen) ()

◆ EntryPointGetInitScene

typedef const char *(__cdecl * EntryPointGetInitScene) ()

◆ EntryPointGetWindowName

typedef const char *(__cdecl * EntryPointGetWindowName) ()

◆ EntryPointGetWindowSize

typedef void(__cdecl * EntryPointGetWindowSize) (uint32_t &, uint32_t &)

◆ EntryPointInit

typedef void(__cdecl * EntryPointInit) ()