physx 0.8.0

High-level Rust interface for Nvidia PhysX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Author: Tom Olsson <mail@tomolsson.se>
// Copyright © 2019, Embark Studios, all rights reserved.
// Created: 12 June 2019

#![warn(clippy::all)]

/*!

Release trait to make sure our Deref hack calls the right Release
 */

pub trait Releasable {
    fn release(&mut self);
}