aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
blob: 440a12f26418318494df0a85ad86ce29b6c27b50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>

#include "ui.hpp"

int main() {
	hilare_a_param p;
	p.l = 50;
	p.r_c_car = 25;
	p.r_c_trolley = 20;

	UI the_ui(&p);

	the_ui.run();

	return 0;
}

/* vim: set ts=4 sw=4 tw=0 noet :*/