LeviLamina
Loading...
Searching...
No Matches
PhysicsDefinition.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/json_util/JsonSchemaObjectNode.h"
7
8// auto generated forward declare list
9// clang-format off
10class EntityContext;
11struct PhysicsComponent;
12namespace JsonUtil { class EmptyClass; }
13// clang-format on
14
15struct PhysicsDefinition {
16public:
17 // member variables
18 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 PhysicsDefinition& operator=(PhysicsDefinition const&);
27 PhysicsDefinition(PhysicsDefinition const&);
28 PhysicsDefinition();
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI void initialize(::EntityContext& entity, ::PhysicsComponent&) const;
34 // NOLINTEND
35
36public:
37 // static functions
38 // NOLINTBEGIN
39 MCAPI static void
41 // NOLINTEND
42
43public:
44 // static variables
45 // NOLINTBEGIN
46 MCAPI static bool const& HAS_COLLISION_DEFAULT();
47
48 MCAPI static bool const& HAS_GRAVITY_DEFAULT();
49
50 MCAPI static bool const& PUSH_TOWARDS_CLOSEST_SPACE_DEFAULT();
51 // NOLINTEND
52};
Definition EntityContext.h:17
Definition EmptyClass.h:7
Definition JsonSchemaObjectNode.h:8
Definition PhysicsComponent.h:5
Definition Alias.h:14