mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-17 00:45:10 +00:00
10 lines
149 B
C
10 lines
149 B
C
|
#pragma once
|
||
|
|
||
|
namespace al
|
||
|
{
|
||
|
class Projection {
|
||
|
public:
|
||
|
float getFovy(void) const;
|
||
|
void setFovy(float);
|
||
|
};
|
||
|
};
|