cargo-uat 0.1.0

Unreal Automation Tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Serialize, Deserialize};

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub enum LoadingPhase {
    Default
}

impl Default for LoadingPhase {
    fn default() -> Self {
        Self::Default
    }
}