Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

11 lines
308 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Modules/ModuleManager.h"
// Dummy module, currently only used by Viewport Toolbar to show/hide the "Use Experimental Gizmos" entry.
class FGizmoSettingsModule : public IModuleInterface
{
};
IMPLEMENT_MODULE(FGizmoSettingsModule, GizmoSettings)