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