mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
18 lines
365 B
C++
18 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
|