mirror of
https://github.com/SMGCommunity/Petari.git
synced 2024-12-02 10:36:39 +00:00
11 lines
109 B
C++
11 lines
109 B
C++
#ifndef STD_H
|
|
#define STD_H
|
|
|
|
#include "types.h"
|
|
|
|
namespace std
|
|
{
|
|
f32 atan2(f32, f32);
|
|
};
|
|
|
|
#endif // STD_H
|