mirror of
https://github.com/zeldaret/tp
synced 2026-05-24 15:21:08 -04:00
14 lines
138 B
C++
14 lines
138 B
C++
#ifndef __C_ANGLE_H_
|
|
#define __C_ANGLE_H_
|
|
|
|
#include "global.h"
|
|
|
|
class cSAngle {
|
|
public:
|
|
cSAngle();
|
|
|
|
private:
|
|
s16 value;
|
|
};
|
|
|
|
#endif |