OSDN Git Service

Add some javadocs and some small changes
[mikumikustudio/libgdx-mikumikustudio.git] / gdx / src / com / badlogic / gdx / graphics / g3d / RenderableProvider.java
index 7ab819a..46694e3 100644 (file)
@@ -10,13 +10,10 @@ import com.badlogic.gdx.utils.Pool;
  *
  */
 public interface RenderableProvider {
-       /**
-        * Returns {@link Renderable} instances. Renderables are obtained from the provided
-        * pool and added to the provided array. The Renderables in the array will later be
+       /** Returns {@link Renderable} instances. Renderables are obtained from the provided
+        * {@link Pool} and added to the provided array. The Renderables in the array will later be
         * put back into the pool, do not store them internally. The resulting array can be rendered via a {@link ModelBatch}.
-        * 
         * @param renderables the output array
-        * @param pool the pool to obtain Renderables from
-        */
+        * @param pool the pool to obtain Renderables from */
        public void getRenderables(Array<Renderable> renderables, Pool<Renderable> pool);
 }