rpfm_lib/files/rigidmodel/materials/rs_river.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//---------------------------------------------------------------------------//
14// Implementation
15//---------------------------------------------------------------------------//
16
17impl Material {
18 pub fn read_rs_river<R: ReadBytes>(_data: &mut R) -> Result<Self> {
19 Ok(Self::default())
20 }
21 pub fn write_rs_river<W: WriteBytes>(&self, _data: &mut W) -> Result<()> {
22 Ok(())
23 }
24}