Reputation: 1002
I was just wondering if you can enlarge the console text in C++ because i am writing a game and i want the game title to be printed out enlarged to give the feel of a real text based adventure game.
Upvotes: 0
Views: 264
Reputation: 16896
Use ASCII art because
a) It will work and
b) You'll get that authentic text-based adventure look.
Upvotes: 4
Reputation: 1119
You can do a lot of text related things using termcaps under UNIX systems. However i don't know how it works under windows systems... Here is the termcaps library documentation.
Upvotes: 0