git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@39 67173fc5-114c-0410-ac8e-9d2fd5bffc1f

pull/1/head
aramis_acg 2008-05-24 15:04:25 +00:00
parent de1c66d941
commit 7e9d0cc834
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ package assimp;
* @author Aramis (Alexander Gessler) * @author Aramis (Alexander Gessler)
* @version 1.0 * @version 1.0
*/ */
public abstract class IMappable { public abstract class Mappable {
/** /**
* Index of the mapped object in the parent Mesh * Index of the mapped object in the parent Mesh
@ -67,7 +67,7 @@ public abstract class IMappable {
* @param parent Must be valid, null is not allowed * @param parent Must be valid, null is not allowed
* @param index Valied index in the parent's list * @param index Valied index in the parent's list
*/ */
public IMappable(Object parent, int index) { public Mappable(Object parent, int index) {
m_parent = parent; m_parent = parent;
m_iArrayIndex = index; m_iArrayIndex = index;
} }