Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/jolt_physics/Jolt/ObjectStream/SerializableObject.cpp
9906 views
1
// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
2
// SPDX-FileCopyrightText: 2021 Jorrit Rouwe
3
// SPDX-License-Identifier: MIT
4
5
#include <Jolt/Jolt.h>
6
7
#include <Jolt/ObjectStream/SerializableObject.h>
8
9
JPH_NAMESPACE_BEGIN
10
11
JPH_IMPLEMENT_SERIALIZABLE_ABSTRACT(SerializableObject)
12
{
13
}
14
15
JPH_NAMESPACE_END
16
17