ra2-types 0.0.3

Shared types definitions for Red Alert 2
Documentation
1
2
3
4
5
6
7
8
9
use super::*;

impl Error for MixError { }

impl Display for MixError {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        match self { MixError::UnknownError => { write!(f, "UnknownError") } }
    }
}