Physics3D: Rename Physics3DBody to PhysBody3D

This commit is contained in:
SirLynix
2024-02-10 14:20:47 +01:00
parent 9e3ca2472b
commit 8c41ac30c9
10 changed files with 48 additions and 48 deletions

View File

@@ -0,0 +1,32 @@
// Copyright (C) 2024 Jérôme "SirLynix" Leclercq (lynix680@gmail.com)
// This file is part of the "Nazara Engine - Physics3D module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#pragma once
#ifndef NAZARA_PHYSICS3D_PHYSBODY3D_HPP
#define NAZARA_PHYSICS3D_PHYSBODY3D_HPP
#include <NazaraUtils/Prerequisites.hpp>
#include <Nazara/Physics3D/Config.hpp>
namespace Nz
{
class NAZARA_PHYSICS3D_API PhysBody3D
{
public:
PhysBody3D() = default;
PhysBody3D(const PhysBody3D&) = delete;
PhysBody3D(PhysBody3D&&) = delete;
virtual ~PhysBody3D();
virtual UInt32 GetBodyIndex() const = 0;
PhysBody3D& operator=(const PhysBody3D&) = delete;
PhysBody3D& operator=(PhysBody3D&&) = delete;
};
}
#include <Nazara/Physics3D/PhysBody3D.inl>
#endif // NAZARA_PHYSICS3D_PHYSBODY3D_HPP