This commit is contained in:
Quaternions 2024-11-25 20:27:58 -08:00
parent 8fbbea3613
commit 666751e2e4

View File

@ -2,7 +2,7 @@ bitflags::bitflags!{
#[derive(Clone,Copy,Debug,Default)]
pub struct Games:u32{
const Bhop=1<<0;
const Surf=2<<0;
const FlyTrials=5<<0;
const Surf=1<<1;
const FlyTrials=1<<4;
}
}