21 lines
206 B
Coq
21 lines
206 B
Coq
|
module steamid
|
||
|
|
||
|
pub struct SteamID32 {
|
||
|
pub:
|
||
|
universe int
|
||
|
id int
|
||
|
account_number int
|
||
|
}
|
||
|
|
||
|
pub struct SteamID3 {
|
||
|
pub:
|
||
|
letter string
|
||
|
id int
|
||
|
account_number int
|
||
|
}
|
||
|
|
||
|
pub struct SteamID64 {
|
||
|
pub:
|
||
|
w i64
|
||
|
}
|