Skip to content

Commit

Permalink
Rename util module to vector
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatNintendoNerd committed Feb 19, 2024
1 parent e4b8474 commit 3944eb6
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lvd_lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub mod objects;
pub mod shape;
pub mod string;
pub mod tag;
pub mod util;
pub mod vector;
pub mod version;

use array::LvdArray;
Expand Down
2 changes: 1 addition & 1 deletion lvd_lib/src/objects/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use serde::{Deserialize, Serialize};
use crate::{
id::Id,
string::{LvdFixedString56, LvdFixedString64},
util::Vector3,
vector::Vector3,
version::{Version, Versioned},
};

Expand Down
2 changes: 1 addition & 1 deletion lvd_lib/src/objects/collision.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use serde::{Deserialize, Serialize};
use crate::{
array::LvdArray,
objects::base::{Base, MetaInfo},
util::Vector2,
vector::Vector2,
version::{Version, Versioned},
};

Expand Down
2 changes: 1 addition & 1 deletion lvd_lib/src/objects/collision/cliff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use serde::{Deserialize, Serialize};

use crate::{
objects::base::Base,
util::Vector2,
vector::Vector2,
version::{Version, Versioned},
};

Expand Down
2 changes: 1 addition & 1 deletion lvd_lib/src/objects/field_smash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::{
shape::{LvdPath, LvdShape2, LvdShape3, Rect},
string::LvdFixedString32,
tag::Tag,
util::Vector2,
vector::Vector2,
version::{Version, Versioned},
};

Expand Down
2 changes: 1 addition & 1 deletion lvd_lib/src/objects/point.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use serde::{Deserialize, Serialize};

use crate::{
objects::base::{Base, MetaInfo},
util::Vector2,
vector::Vector2,
version::{Version, Versioned},
};

Expand Down
2 changes: 1 addition & 1 deletion lvd_lib/src/objects/ptrainer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use crate::{
array::LvdArray,
objects::base::Base,
string::LvdFixedString64,
util::Vector3,
vector::Vector3,
version::{Version, Versioned},
};

Expand Down
2 changes: 1 addition & 1 deletion lvd_lib/src/shape.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use serde::{Deserialize, Serialize};

use crate::{
array::LvdArray,
util::Vector2,
vector::Vector2,
version::{Version, Versioned},
};

Expand Down
File renamed without changes.

0 comments on commit 3944eb6

Please sign in to comment.