mirror of
https://github.com/encounter/mkdd.git
synced 2026-03-30 11:30:02 -07:00
24 lines
347 B
C++
24 lines
347 B
C++
#ifndef ENGINESOUND_H
|
|
#define ENGINESOUND_H
|
|
|
|
#include "Kaneshige/KartInfo.h"
|
|
|
|
// create Header with just enums
|
|
enum EngineType {
|
|
ENGINE0,
|
|
ENGINE1,
|
|
ENGINE2,
|
|
ENGINE3,
|
|
ENGINE4,
|
|
ENGINE5,
|
|
ENGINE6,
|
|
ENGINE7,
|
|
ENGINE8
|
|
};
|
|
|
|
namespace EngineSound {
|
|
EngineType getEngineType(EKartID kartID);
|
|
}
|
|
|
|
#endif // !ENGINESOUND_H
|