14 lines
182 B
C
14 lines
182 B
C
#ifndef RENDERPARAMS2D_H
|
|
#define RENDERPARAMS2D_H
|
|
|
|
struct RenderParams2D {
|
|
|
|
struct Clipping {
|
|
float belowHeight_m;
|
|
float aboveHeight_m;
|
|
} clip;
|
|
|
|
};
|
|
|
|
#endif // RENDERPARAMS2D_H
|