UnrealFixedMath/Source/UnrealFixedPoint/Public/UnrealFixedPoint.h

15 lines
293 B
C
Raw Permalink Normal View History

2023-02-11 21:39:09 +00:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Modules/ModuleManager.h"
class FUnrealFixedPointModule : public IModuleInterface
{
public:
/** IModuleInterface implementation */
virtual void StartupModule() override;
virtual void ShutdownModule() override;
};