Remove LodLocation since LodCorner exists

This commit is contained in:
James Seibel
2021-05-29 12:45:46 -05:00
parent a3357c1193
commit 5002db15d6
@@ -1,29 +0,0 @@
package com.backsun.lod.enums;
/**
*
* @author James Seibel
* @version 1-20-2020
*
* NE, SE, SW, NW
*/
public enum LodLocation
{
// used for position
/** -Z, +X */
NE(0),
/** +Z, +X */
SE(1),
/** +Z, -X */
SW(2),
/** -Z, -X */
NW(3);
public final int value;
private LodLocation(int newValue)
{
value = newValue;
}
}