mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-22 07:23:46 +01:00
Added ColorMap definition.
This commit is contained in:
parent
375812ea15
commit
6a4083d28c
@ -23,9 +23,11 @@ struct Color {
|
|||||||
uint8_t b;
|
uint8_t b;
|
||||||
};
|
};
|
||||||
|
|
||||||
map<string, Color> parse_colors()
|
typedef map<string, Color> ColorMap;
|
||||||
|
|
||||||
|
ColorMap parse_colors()
|
||||||
{
|
{
|
||||||
map<string, Color> parsed;
|
ColorMap parsed;
|
||||||
|
|
||||||
ifstream in;
|
ifstream in;
|
||||||
in.open("colors.txt", ifstream::in);
|
in.open("colors.txt", ifstream::in);
|
||||||
@ -155,5 +157,5 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
map<string, Color> colors = parse_colors();
|
ColorMap colors = parse_colors();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user