| 1 | #pragma once |
|---|---|
| 2 | #include "base/rust.h" |
| 3 | #include "engine/console.h" |
| 4 | |
| 5 | #ifdef __clang__ |
| 6 | #pragma clang diagnostic push |
| 7 | #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" |
| 8 | #endif // __clang__ |
| 9 | |
| 10 | void RustVersionPrint(::IConsole const &console) noexcept; |
| 11 | |
| 12 | void RustVersionRegister(::IConsole &console) noexcept; |
| 13 | |
| 14 | #ifdef __clang__ |
| 15 | #pragma clang diagnostic pop |
| 16 | #endif // __clang__ |
| 17 |