git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@39 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
parent
de1c66d941
commit
7e9d0cc834
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue