mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-10 13:47:46 +00:00
Various widget constructor stubs and factories
This commit is contained in:
@@ -6,6 +6,21 @@
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class CGuiCamera : public CGuiWidget
|
||||
{
|
||||
public:
|
||||
enum class Projection
|
||||
{
|
||||
Perspective,
|
||||
Orthographic
|
||||
};
|
||||
private:
|
||||
Projection xf8_proj;
|
||||
public:
|
||||
CGuiCamera(const CGuiWidgetParms& parms, float, float, float, float, float, float);
|
||||
CGuiCamera(const CGuiWidgetParms& parms, float fov, float aspect, float znear, float zfar);
|
||||
static CGuiCamera* Create(CGuiFrame* frame, CInputStream& in, bool flag);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user