1// SPDX-FileCopyrightText: 2020 Inseok Lee 2// SPDX-License-Identifier: MIT 3 4#![allow(dead_code)] 5 6use crate::havok::transform::HavokTransform; 7 8pub trait HavokAnimation { 9 fn duration(&self) -> f32; 10 fn sample(&self, time: f32) -> Vec<HavokTransform>; 11}