thunderbrew/src/gx/Camera.hpp
2023-01-02 13:17:18 -06:00

19 lines
365 B
C++

#ifndef GX_CAMERA_HPP
#define GX_CAMERA_HPP
#include <cstdint>
#include <common/DataMgr.hpp>
typedef HDATAMGR HCAMERA;
class CRect;
class C2Vector;
HCAMERA CameraCreate(void);
void CameraSetupScreenProjection(const CRect&, const C2Vector&, float, int32_t);
void CameraSetupWorldProjection(HCAMERA camera, const CRect& projectionRect, uint32_t flags);
#endif