summaryrefslogtreecommitdiff
path: root/common/accel_noaccel.cpp
blob: 50506a7f9ee8abb570490ee11b4de4a24f96d348 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#define _USE_MATH_DEFINES
#include <math.h>

#include "accel_types.hpp"

namespace rawaccel {
	accel_noaccel::accel_noaccel(accel_args args)
		: accel_implentation(args) {}

	double accel_noaccel::accelerate(double speed) { return 0; }

	void accel_noaccel::verify(accel_args args) { }
}