silence some warnings

This commit is contained in:
Quaternions 2025-04-23 16:07:28 -07:00
parent 95fffbbf42
commit b5da30fd9a
Signed by: Quaternions
GPG Key ID: D0DF5964F79AC131
3 changed files with 2 additions and 2 deletions
lib
roblox_emulator/src/runner
snf/src/newtypes

@ -1,6 +1,7 @@
use super::instance::Instance;
use super::tween_info::TweenInfo;
#[allow(dead_code)]
#[derive(Clone)]
pub struct Tween{
instance:Instance,

@ -1,6 +1,7 @@
use super::number::Number;
use super::r#enum::{CoerceEnum,Enums};
#[allow(dead_code)]
#[derive(Clone)]
pub struct TweenInfo{
time:f64,

@ -56,8 +56,6 @@ impl From<strafesnet_common::integer::Ratio64Vec2> for Ratio64Vec2{
}
}
pub type Angle32=i32;
pub type Planar64=i64;
pub type Planar64Vec3=[i64;3];
pub type Planar64Mat3=[i64;9];
pub type Planar64Affine3=[i64;12];