mirror of
https://github.com/kevinporetti/UnrealImGui.git
synced 2025-01-18 16:30:32 +00:00
14 lines
261 B
C#
14 lines
261 B
C#
using UnrealBuildTool;
|
|
|
|
public class ImPlotLibrary : ModuleRules
|
|
{
|
|
#if WITH_FORWARDED_MODULE_RULES_CTOR
|
|
public ImPlotLibrary(ReadOnlyTargetRules Target) : base(Target)
|
|
#else
|
|
public ImPlotLibrary(TargetInfo Target)
|
|
#endif
|
|
{
|
|
Type = ModuleType.External;
|
|
}
|
|
}
|