nwnrs 0.0.1

Command-line inspection, conversion, packing, unpacking, and NWScript tooling for Neverwinter Nights resources
Documentation
1
2
3
4
5
6
7
8
#![forbid(unsafe_code)]
//! Binary entrypoint for the `nwnrs` command-line tools.

use std::process::ExitCode;

fn main() -> ExitCode {
    nwnrs::main_entry()
}