18 lines
359 B
C++
18 lines
359 B
C++
#pragma once
|
|
#include <tuple>
|
|
|
|
#include "arylib/auton.hpp"
|
|
|
|
using namespace std;
|
|
class AutonSelector {
|
|
public:
|
|
std::vector<Auton> Autons;
|
|
int current_auton_page;
|
|
int auton_count;
|
|
AutonSelector();
|
|
AutonSelector(std::vector<Auton> autons);
|
|
void call_selected_auton();
|
|
void print_selected_auton();
|
|
void add_autons(std::vector<Auton> autons);
|
|
};
|