mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-06 01:55:53 +00:00
13 lines
123 B
C++
13 lines
123 B
C++
#ifndef _CVECTOR2I_HPP
|
|
#define _CVECTOR2I_HPP
|
|
|
|
#include "types.h"
|
|
|
|
class CVector2i {
|
|
private:
|
|
int x;
|
|
int y;
|
|
};
|
|
|
|
#endif
|