1
2
3
4
5
6
7
8
9
10
11
12
13
//     dis-rust - A rust implementation of the DIS simulation protocol.
//     Copyright (C) 2022 Thomas Mann
// 
//     This software is dual-licensed. It is available under the conditions of
//     the GNU Affero General Public License (see the LICENSE file included) 
//     or under a commercial license (email contact@coffeebreakdevs.com for
//     details).

//! Crate to represent the DIS simulation protocol in rust.
pub mod common;
pub mod entity_information;
pub mod warfare;
pub mod simulation_management;