mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-12-06 17:06:34 +01:00
11 lines
114 B
C++
11 lines
114 B
C++
#pragma once
|
|
|
|
namespace MM::Components {
|
|
|
|
struct ViewDir2D {
|
|
float dir {0.f}; // rad
|
|
};
|
|
|
|
} // MM::Components
|
|
|