mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-25 12:45:17 +00:00
11 lines
196 B
C
11 lines
196 B
C
|
#pragma once
|
||
|
|
||
|
namespace sead {
|
||
|
class PerspectiveProjection {
|
||
|
public:
|
||
|
float getFovy();
|
||
|
|
||
|
unsigned char padding[0xA0];
|
||
|
float fovy;
|
||
|
};
|
||
|
}
|