9 lines
130 B
C
9 lines
130 B
C
#ifndef NEW_POINT_H
|
|
#define NEW_POINT_H
|
|
#include <core/math/transform.h>
|
|
struct new_point {
|
|
Transform xform;
|
|
int tag;
|
|
};
|
|
#endif
|