blob: 8da9a00ff6618ad61a7e6a9f2ea296db527cc681 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
#pragma once
#include <cstdint>
#include "../Component.h"
namespace crepe::api {
class Force : public Component {
public:
	Force(uint32_t game_object_id, uint32_t magnitude, uint32_t direction);
	int32_t force_x;
	int32_t force_y;
};
} // namespace crepe::api
 
  |