datalurkur / Mountainhome

A detailed and intricate worldsim borrowing from the Dungeon Keeper-style dungeon-building mechanic
You're lookin' at it.
6 stars 2 forks source link

Update the logger to use a QT-like system #60

Open StLoch opened 14 years ago

StLoch commented 14 years ago
Info("Res: [" << x << "x" << y << "]"); // Current style
Info("Res: [%1x%2]", x, y);             // QT-inspired stye

Not sure if we can support both at the same time. I think I definitely like the latter, though...