MAKE THE TORUS FUCKING WORK!! I swear to god I am NEVER messing with signedness...
[SmugglerRL.git] / src / main.d
blob43b5a8d69cd24da321f195c743487bfb6605e614
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 version(GNU) {
19 pragma(msg, "There's a weird bug with GDC that prevents it from working and instead makes it crash :<");
22 import std.stdio: stderr;
23 set_logger_target(stderr);
25 Game g = new Game(args);
26 log("Made a game!");
27 g.mainloop();