fix deprecation warnings from latest dmd
[SmugglerRL.git] / src / main.d
blobf539e7cdaa297e96383d3eabba3ac480c17914fa
1 import game;
2 import logging;
4 // TODO made this a thing. Somewhere...
5 bool isTextOfYetHasBeenMadeShallBeVisible() {
6 /* IDK why, but this was inspired by the bit in undertale where you look in the
7 * telescope and you just see stars but you have to move the cursor in order to
8 * see the text telling you to look at the wall. Except that I had already
9 * looked at the wall, so there must have been some sort of function that
10 * tested... well, tested if the text is of yet made shall be visible. So, of
11 * course, since the undertale dev /CAN'T/ have called their function that, I
12 * called mine it. Ahhh, isTextOfYetHasBeenMadeShallBeVisible().
14 return false;
17 void main(string[] args) {
18 import std.stdio: stderr;
19 set_logger_target(stderr);
21 mainloop();