You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
573 B
19 lines
573 B
14 years ago
|
/*
|
||
|
* To change this template, choose Tools | Templates
|
||
|
* and open the template in the editor.
|
||
|
*/
|
||
|
package com.jme3.gde.blender;
|
||
|
|
||
|
import com.jme3.gde.core.assets.SpatialAssetDataObject;
|
||
|
import java.io.IOException;
|
||
|
import org.openide.filesystems.FileObject;
|
||
|
import org.openide.loaders.DataObjectExistsException;
|
||
|
import org.openide.loaders.MultiFileLoader;
|
||
|
|
||
|
public class BlenderDataObject extends SpatialAssetDataObject {
|
||
|
|
||
|
public BlenderDataObject(FileObject pf, MultiFileLoader loader) throws DataObjectExistsException, IOException {
|
||
|
super(pf, loader);
|
||
|
}
|
||
|
}
|