config.c3 raw
 1module config;
 2
 3const int WINDOW_WIDTH = 2000;
 4const int WINDOW_HEIGHT = 1500;
 5const ZString WINDOW_TITLE = "iceworks";
 6const int TARGET_FPS = 60;
 7
 8const ZString REGULAR_FONT = "fonts/LiberationSans-Regular.ttf";
 9const ZString BOLD_FONT = "fonts/LiberationSans-Bold.ttf";
10
11const float ZOOM_SENSITIVITY = 0.15;