mirror of
https://github.com/StrikerX3/StrikeBox.git
synced 2025-04-02 10:42:17 -04:00
14 lines
194 B
C++
14 lines
194 B
C++
#pragma once
|
|
|
|
#include "strikebox/xbox.h"
|
|
|
|
namespace strikebox {
|
|
|
|
struct StrikeBoxInfo {
|
|
const char *version;
|
|
const uint64_t versionId;
|
|
};
|
|
|
|
const struct StrikeBoxInfo * GetStrikeBoxInfo();
|
|
|
|
}
|