change the packages from com.backsun.lod... to com.seibel.lod...

This commit is contained in:
James Seibel
2021-05-31 19:30:48 -05:00
parent 884f6811a1
commit 84125735a1
34 changed files with 110 additions and 108 deletions
@@ -0,0 +1,28 @@
package com.seibel.lod.objects;
import net.minecraft.client.renderer.BufferBuilder;
/**
* This object is just a replacement for an array
* to make things easier to understand in the LodRenderer
* and BuildBufferThread.
*
* @author James Seibel
* @version 03-25-2021
*/
public class NearFarBuffer
{
public BufferBuilder nearBuffer;
public BufferBuilder farBuffer;
/**
* @param newNearBuffer
* @param newFarBuffer
*/
public NearFarBuffer(BufferBuilder newNearBuffer, BufferBuilder newFarBuffer)
{
nearBuffer = newNearBuffer;
farBuffer = newFarBuffer;
}
}