Rename unique identifier to personality value
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2023-07-09 10:14:19 +02:00
parent 3472d39bed
commit c44621d1cb
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ pub trait PokemonTrait: WithVolatile {
fn battle(&self) -> PkmnResult<Option<Battle>>;
fn level(&self) -> PkmnResult<LevelInt>;
fn experience(&self) -> PkmnResult<u32>;
fn unique_identifier(&self) -> PkmnResult<u32>;
fn personality_value(&self) -> PkmnResult<u32>;
fn gender(&self) -> PkmnResult<Gender>;
fn coloring(&self) -> PkmnResult<u8>;
fn current_health(&self) -> PkmnResult<u32>;
@ -387,7 +387,7 @@ mod implementation {
Pokemon,
fn level(&self) -> LevelInt;
fn experience(&self) -> u32;
fn unique_identifier(&self) -> u32;
fn personality_value(&self) -> u32;
fn gender(&self) -> Gender;
fn coloring(&self) -> u8;
fn current_health(&self) -> u32;
@ -542,7 +542,7 @@ mod implementation {
PokemonImpl, Pokemon,
pub fn level(&self) -> LevelInt;
pub fn experience(&self) -> u32;
pub fn unique_identifier(&self) -> u32;
pub fn personality_value(&self) -> u32;
pub fn gender(&self) -> Gender;
pub fn coloring(&self) -> u8;
pub fn current_health(&self) -> u32;
@ -675,7 +675,7 @@ mockall::mock!(
fn battle(&self) -> PkmnResult<Option<Battle>>;
fn level(&self) -> PkmnResult<LevelInt>;
fn experience(&self) -> PkmnResult<u32>;
fn unique_identifier(&self) -> PkmnResult<u32>;
fn personality_value(&self) -> PkmnResult<u32>;
fn gender(&self) -> PkmnResult<Gender>;
fn coloring(&self) -> PkmnResult<u8>;
fn current_health(&self) -> PkmnResult<u32>;