Add NEX results and fix timers

This commit is contained in:
red binder 2026-04-06 13:35:55 +00:00 committed by Maple
commit 55b3959797
8 changed files with 586 additions and 52 deletions

View file

@ -4,15 +4,15 @@ use rnex_core::rmc::structures::qbuffer::QBuffer;
#[derive(RmcSerialize, Debug)]
#[rmc_struct(0)]
struct UploadCompetitionData {
winning_team: u32,
splatfest_id: u32,
unk_2: u32,
unk_3: u32,
team_id_1: u8,
team_id_2: u8,
unk_5: u32,
player_data: QBuffer,
pub struct UploadCompetitionData{
pub unk_1/*?*/: u32,
pub splatfest_id: u32,
pub unk_2/*?*/: u32,
pub score: u32,
pub team_id: u8,
pub team_win: u8,
pub is_first_upload: bool,
pub appdata: QBuffer,
}
#[derive(Copy, Clone, Pod, Zeroable)]