alphafix 0.1.1

CLI & file explorer tool to bleed colors to transparent pixels for game engines
Documentation
1
2
3
4
5
6
7
8
9
10
use std::process::ExitCode;
use cli::Cli;
use clap::Parser;

mod cli;

fn main() -> ExitCode {
    let cli = Cli::parse();
    return if cli.run() {ExitCode::SUCCESS} else {ExitCode::FAILURE};
}