yupplemayham/YuppleMayham/utility/mousestate.h
Ethan Adams 7e7dfd97b7 Removed UNIX (..) from headers
Cleaned up the weapon class
moved mousestate.h out of gameplay into utility
2024-06-22 00:08:59 -04:00

9 lines
No EOL
113 B
C

#ifndef _H_MOUSESTATE_H
#define _H_MOUSESTATE_H
struct MouseState {
float x = 0.0f;
float y = 0.0f;
};
#endif