mirror of
https://github.com/kevinporetti/UnrealImGui.git
synced 2025-01-18 08:20:32 +00:00
865ade48c0
- Replaced obsolete module rules constructors with new versions forwarding read-only target rules to base constructors.
14 lines
258 B
C#
14 lines
258 B
C#
using UnrealBuildTool;
|
|
|
|
public class ImGuiLibrary : ModuleRules
|
|
{
|
|
#if WITH_FORWARDED_MODULE_RULES_CTOR
|
|
public ImGuiLibrary(ReadOnlyTargetRules Target) : base(Target)
|
|
#else
|
|
public ImGuiLibrary(TargetInfo Target)
|
|
#endif
|
|
{
|
|
Type = ModuleType.External;
|
|
}
|
|
}
|