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
falsycat 84c3a02b9a [RELEASE] u22-v03
This version is submitted to U22 breau.
2020-09-14 00:00:00 +00:00

27 lines
448 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;
struct {
bool loworld_poolset_packing;
bool loplayer_packing;
} test;
} loscene_param_t;