SuperTuxKart
official_karts.hpp
1 #ifndef HEADER_OFFICIAL_KARTS_HPP
2 #define HEADER_OFFICIAL_KARTS_HPP
3 
4 #include <string>
5 #include <set>
6 
7 class KartProperties;
8 class Vec3;
9 
10 namespace OfficialKarts
11 {
12 void dumpOfficialKarts();
13 void load();
14 std::set<std::string> getOfficialKarts();
15 const 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