cargo-uat 0.1.0

Unreal Automation Tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use cargo_uat::prelude::*;
use cargo_uat::UAT;

fn main() -> Result<()> {
    match std::env::args().nth(2).as_deref() {
        Some("editor") => UAT::editor(),
        Some("build") => UAT::build(),
        Some("cook") => UAT::build(),
        Some("run") => UAT::run(),
        _ => Ok(())
    }
}