12 lines
192 B
C
12 lines
192 B
C
#ifndef RENDERPARAMS_H
|
|
#define RENDERPARAMS_H
|
|
|
|
struct RenderParams {
|
|
|
|
/** clip (do not render) everything above this height */
|
|
float clipAboveHeight_m = 99999;
|
|
|
|
};
|
|
|
|
#endif // RENDERPARAMS_H
|