Move MarkerGson into its own package

This commit is contained in:
Lukas Rieger (Blue) 2022-08-01 12:53:33 +02:00
parent 29e84ed198
commit 3ccc1aad81
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package de.bluecolored.bluemap.api.markers;
package de.bluecolored.bluemap.api.gson;
import com.flowpowered.math.vector.Vector2d;
import com.flowpowered.math.vector.Vector2i;
@ -32,6 +32,7 @@ import com.google.gson.*;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonToken;
import com.google.gson.stream.JsonWriter;
import de.bluecolored.bluemap.api.markers.*;
import de.bluecolored.bluemap.api.math.Color;
import de.bluecolored.bluemap.api.math.Line;
import de.bluecolored.bluemap.api.math.Shape;