This repository has been archived on 2022-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
LEFTONE/core/loscene/param.h

22 lines
365 B
C

#pragma once
#include <stdbool.h>
#include <stdint.h>
#include "util/math/vector.h"
#include "core/loworld/environment.h"
typedef struct {
int32_t width;
int32_t height;
vec2_t dpi;
int32_t max_msaa;
int32_t brightness; /* darkest |0 <- 1000 -> 2000| brightest */
loworld_environment_config_t environment;
bool skip_title;
} loscene_param_t;