Files
FlaxEngine/Source/Engine/Physics/Actors/IPhysicsDebug.h
Wojtek Figat ef2c551cee Fix build
2025-10-08 23:24:15 +02:00

19 lines
367 B
C++

// Copyright (c) Wojciech Figat. All rights reserved.
#pragma once
#include "Engine/Core/Types/BaseTypes.h"
#if USE_EDITOR
class FLAXENGINE_API IPhysicsDebug
{
public:
virtual void DrawPhysicsDebug(struct RenderView& view)
{
}
};
#define ImplementPhysicsDebug void DrawPhysicsDebug(RenderView& view) override
#else
#define ImplementPhysicsDebug
#endif