aboutsummaryrefslogtreecommitdiff
path: root/src/raw/mod.rs
blob: 7cbe483d6e5ce7122d7dc559b90d27cf08b38ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! This module defines raw types that correspond 1:1 to the C types used in
//! [arcdps](https://www.deltaconnected.com/arcdps/evtc/README.txt).
//!
//! It is not advised to use those types and functions, as dealing with all the
//! low-level details can be quite tedious. Instead, use the higher-level
//! functions whenever possible.
mod types;

pub use self::types::{
    Agent, CbtActivation, CbtBuffRemove, CbtCustomSkill, CbtEvent, CbtResult, CbtStateChange,
    Language, Skill, IFF,
};

pub mod parser;

pub use self::parser::{parse_file, Evtc, ParseError};