aboutsummaryrefslogtreecommitdiffstats
path: root/src/settings.c
blob: 26aad2f8dbd8d130069a9e04d093e2f6290a1a38 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "settings.h"

Settings defaultSettings()
{
  return (Settings){
    .windowWidth = 960,
    .windowHeight = 720
  };
}