mirror of
https://github.com/projectPiki/pikmin2.git
synced 2025-02-11 00:57:01 +00:00
21 lines
297 B
C
21 lines
297 B
C
#ifndef _VIEWPORT_H
|
|
#define _VIEWPORT_H
|
|
|
|
#include "Rect.h"
|
|
|
|
struct Viewport {
|
|
Viewport();
|
|
~Viewport();
|
|
|
|
void getMatrix(bool);
|
|
void refresh();
|
|
void setJ3DViewMtx(bool);
|
|
void setProjection();
|
|
void setRect(Rectf&);
|
|
void setViewport();
|
|
void updateCameraAspect();
|
|
void viewable();
|
|
};
|
|
|
|
#endif
|