yupplemayham/YuppleMayham/include/utility/mousestate.h
Ethan Adams 3075a01b3d Sorted header files under include
made Script base class for AIScript and eventually WeaponScript
2024-06-22 23:01:50 -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