SuperTuxKart
Loading...
Searching...
No Matches
official_karts.hpp
1#ifndef HEADER_OFFICIAL_KARTS_HPP
2#define HEADER_OFFICIAL_KARTS_HPP
3
4#include <string>
5#include <set>
6
8class Vec3;
9
10namespace OfficialKarts
11{
12void dumpOfficialKarts();
13void load();
14std::set<std::string> getOfficialKarts();
15const KartProperties* getKartByIdent(const std::string& ident,
16 float* width, float* height,
17 float* length, Vec3* gravity_shift);
18}
19
20#endif
This class stores the properties of a kart.
Definition: kart_properties.hpp:60
A wrapper around bullets btVector3 to include conventient conversion functions (e....
Definition: vec3.hpp:35