Skip to main content

rpfm_lib/files/group_formations/versions/
mod.rs

1//---------------------------------------------------------------------------//
2// Copyright (c) 2017-2026 Ismael Gutiérrez González. All rights reserved.
3//
4// This file is part of the Rusted PackFile Manager (RPFM) project,
5// which can be found here: https://github.com/Frodo45127/rpfm.
6//
7// This file is licensed under the MIT license, which can be found here:
8// https://github.com/Frodo45127/rpfm/blob/master/LICENSE.
9//---------------------------------------------------------------------------//
10
11use super::*;
12
13/// Shared data types for v1 (Shogun 2) group formations.
14pub mod v1;
15
16/// Shared data types for v2 (Rome 2 and later) group formations.
17pub mod v2;
18
19/// Per-game decode/encode implementations.
20pub mod troy;
21pub mod warhammer_3;
22pub mod rome_2;
23pub mod shogun_2;