separate import lines

This commit is contained in:
bagomot 2023-04-23 18:18:59 +03:00
parent efdcb42507
commit e4374d0a7e
No known key found for this signature in database
GPG Key ID: F28BBD3A259717A8
1 changed files with 5 additions and 1 deletions

View File

@ -20,7 +20,11 @@ module dlangui.graphics.colors;
import dlangui.core.types;
private import std.string, std.algorithm, std.traits, std.conv, std.range;
import std.string;
import std.algorithm;
import std.traits;
import std.conv;
import std.range;
/// special color constant to identify value as not a color (to use default/parent value instead)
immutable uint COLOR_UNSPECIFIED = 0xFFDEADFF;