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,17 @@
package com.seibel.lod.enums;
/**
* Near, far, or NEAR_AND_FAR.
*
* @author James Seibel
* @version 02-14-2021
*/
public enum FogDistance
{
/** good for fast or fancy fog qualities. */
NEAR,
/** good for fast or fancy fog qualities. */
FAR,
/** only looks good if the fog quality is set to Fancy. */
NEAR_AND_FAR;
}