blob: f945803965c23a4ed92d3df6648b45a2dc3d2946 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// Created by sid on 1/2/24.
//
#ifndef HMMM_UTILITIES_H
#define HMMM_UTILITIES_H
#include "raymath.h"
Vector2 toCenter(Vector2 vector);
Vector2 toTopLeft(Vector2 vector);
Vector2 angle2HeadingVector(float angle);
#endif //HMMM_UTILITIES_H
|