1234567891011121314151617181920212223242526272829303132333435 |
- Namespace mojo3d
- #rem monkeydoc @hidden
- #end
- Class Mojo3dLoader
- Const Instances:=New Stack<Mojo3dLoader>
-
- Method New()
-
- Instances.Push( Self )
- End
-
- Method LoadMesh:Mesh( path:String ) Virtual
-
- Return Null
- End
-
- Method LoadModel:Model( path:String ) Virtual
-
- Return Null
- End
-
- Method LoadBonedModel:Model( path:String ) Virtual
-
- Return Null
- End
-
- Method LoadAnimation:Animation( path:String ) Virtual
-
- Return Null
- End
- End
|