OSDN Git Service

ERL YER SERC CERN HERS BERN RERFERCKTERERD!
[mikumikustudio/libgdx-mikumikustudio.git] / extensions / gdx-bullet / jni / swig-src / com / badlogic / gdx / physics / bullet / btActionInterface.java
1 /* ----------------------------------------------------------------------------
2  * This file was automatically generated by SWIG (http://www.swig.org).
3  * Version 2.0.5
4  *
5  * Do not make changes to this file unless you know what you are doing--modify
6  * the SWIG interface file instead.
7  * ----------------------------------------------------------------------------- */
8
9 package com.badlogic.gdx.physics.bullet;
10
11 public class btActionInterface {
12         private long swigCPtr;
13         protected boolean swigCMemOwn;
14
15         protected btActionInterface (long cPtr, boolean cMemoryOwn) {
16                 swigCMemOwn = cMemoryOwn;
17                 swigCPtr = cPtr;
18         }
19
20         public static long getCPtr (btActionInterface obj) {
21                 return (obj == null) ? 0 : obj.swigCPtr;
22         }
23
24         protected void finalize () {
25                 delete();
26         }
27
28         public synchronized void delete () {
29                 if (swigCPtr != 0) {
30                         if (swigCMemOwn) {
31                                 swigCMemOwn = false;
32                                 gdxBulletJNI.delete_btActionInterface(swigCPtr);
33                         }
34                         swigCPtr = 0;
35                 }
36         }
37
38         public void updateAction (btCollisionWorld collisionWorld, float deltaTimeStep) {
39                 gdxBulletJNI.btActionInterface_updateAction(swigCPtr, this, btCollisionWorld.getCPtr(collisionWorld), collisionWorld,
40                         deltaTimeStep);
41         }
42
43         public void debugDraw (btIDebugDraw debugDrawer) {
44                 gdxBulletJNI.btActionInterface_debugDraw(swigCPtr, this, btIDebugDraw.getCPtr(debugDrawer), debugDrawer);
45         }
46
47 }