| 15 | use super::{Player, PlayerError}; |
| 16 | |
| 17 | pub trait PlayerExecutableCommand: CommandListener { |
| 18 | fn execute(self, player: &mut Player) -> Result<(), PlayerError>; |
| 19 | } |
| 20 | |
| 21 | impl Player { |
| 22 | pub fn coordinate_transform(&self) -> CommandCoordinateTransform { |
nothing calls this directly
no outgoing calls
no test coverage detected