blob: 440a12f26418318494df0a85ad86ce29b6c27b50 (
plain) (
tree)
|
|
#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 :*/
|