diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-04-08 11:28:12 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-04-08 11:28:15 -0500 |
commit | e13459e364158d0611975084a78d37e7f9dad150 (patch) | |
tree | 301c8cd8e3179e3f2191f3183a90942fc66310da /libs/zora-rs/src | |
parent | Bump eslint-plugin-svelte from 2.35.1 to 2.36.0 (diff) | |
download | zorascript-e13459e364158d0611975084a78d37e7f9dad150.tar zorascript-e13459e364158d0611975084a78d37e7f9dad150.tar.gz zorascript-e13459e364158d0611975084a78d37e7f9dad150.tar.bz2 zorascript-e13459e364158d0611975084a78d37e7f9dad150.tar.lz zorascript-e13459e364158d0611975084a78d37e7f9dad150.tar.xz zorascript-e13459e364158d0611975084a78d37e7f9dad150.tar.zst zorascript-e13459e364158d0611975084a78d37e7f9dad150.zip |
Nothing
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-rw-r--r-- | libs/zora-rs/src/enums.rs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libs/zora-rs/src/enums.rs b/libs/zora-rs/src/enums.rs new file mode 100644 index 0000000..a16718b --- /dev/null +++ b/libs/zora-rs/src/enums.rs @@ -0,0 +1,33 @@ +use serde::{Serialize, Deserialize}; +use specta::Type; +mod utils; + +/// The region of the game. +#[derive(Debug, Clone, Type, Serialize, Deserialize)] +pub enum Region { + US, + EU, + JP, +} + +/// Which game +#[derive(Debug, Clone, Type, Serialize, Deserialize)] +pub enum Game { + Ages, + Seasons, +} + +#[derive(Debug, Clone, Type, Serialize, Deserialize)] +pub enum Animal { + Ricky = 0x0b, + Dimitri = 0x0c, + Moosh = 0x0d, +} + +#[derive(Debug, Clone, Type, Serialize, Deserialize)] +pub enum Child { + None, + Curious, + Shy, + Hyperactive +}
\ No newline at end of file |