aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
blob: d1fa143b849010fabfbc6ea910b9e194125d6b50 (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 = 30;
	p.r_c_car = 15;
	p.r_c_trolley = 12;

	UI the_ui(&p);

	the_ui.run();

	return 0;
}

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