This website requires JavaScript.
Explore
Help
Sign In
Deukhoofd
/
PkmnLib_rs
Watch
1
Star
0
Fork
You've already forked PkmnLib_rs
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
10e93949e4
PkmnLib_rs
/
src
/
dynamic_data
/
models
/
battle_result.rs
6 lines
94 B
Rust
Raw
Normal View
History
Unescape
Escape
Removes derive-getters, as it was incredibly annoying in IDEs, and couldn't figure out borrow lifetimes.
2022-06-06 12:43:41 +00:00
#[
derive(Debug, Copy, Clone)
]
Major amounts of progress
2022-06-03 14:35:18 +00:00
pub
enum
BattleResult
{
Inconclusive
,
Conclusive
(
u8
)
,
}