Sha256: f89e285192164650795e1a038924af1e4ab52e3d7be127aea9e61ec6aed7c671
Contents?: true
Size: 588 Bytes
Versions: 4
Compression:
Stored size: 588 Bytes
Contents
// // B2DDestructionListener.h // Box2D // // Created by Juan Jose Karam on 6/15/13. // Copyright (c) 2013 Joybox. All rights reserved. // #import <Foundation/Foundation.h> #import "DestructionListener.h" @class B2DFixture; typedef void (^fixtureSayGoodbyeCallback)(B2DFixture *fixture); @interface B2DDestructionListener : NSObject { DestructionListener *destructionListener; fixtureSayGoodbyeCallback fixtureSayGoodbye; } @property (nonatomic, assign) DestructionListener *destructionListener; @property (nonatomic, copy) fixtureSayGoodbyeCallback fixtureSayGoodbye; @end
Version data entries
4 entries across 2 versions & 1 rubygems