diff options
author | Daniel Schadt <kingdread@gmx.de> | 2018-04-14 20:03:16 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2018-04-14 20:03:16 +0200 |
commit | 6e7431f0ce600502c335b75c8acfe0cf448b68e6 (patch) | |
tree | 1a91d65b5287d48fd14d4d1530e5cdd13f4e2ad0 /src/raw/mod.rs | |
download | evtclib-6e7431f0ce600502c335b75c8acfe0cf448b68e6.tar.gz evtclib-6e7431f0ce600502c335b75c8acfe0cf448b68e6.tar.bz2 evtclib-6e7431f0ce600502c335b75c8acfe0cf448b68e6.zip |
Initial commit
Diffstat (limited to 'src/raw/mod.rs')
-rw-r--r-- | src/raw/mod.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/raw/mod.rs b/src/raw/mod.rs new file mode 100644 index 0000000..4b32955 --- /dev/null +++ b/src/raw/mod.rs @@ -0,0 +1,14 @@ +//! 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}; |