rename 'files' to 'io'

This commit is contained in:
MihailRis
2025-01-30 16:53:52 +03:00
parent e5d558d357
commit 1e22882284
45 changed files with 157 additions and 160 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
#include <gtest/gtest.h>
#include "coders/vec3.hpp"
#include "files/files.hpp"
#include "io/io.hpp"
TEST(VEC3, Decode) {
auto file = std::filesystem::u8path(
"res/models/block.vec3"
);
auto bytes = files::read_bytes_buffer(file);
auto bytes = io::read_bytes_buffer(file);
auto model = vec3::load(file.u8string(), bytes);
}