Pixel was moved to another package

This commit is contained in:
Robert Vokac 2024-12-22 21:18:29 +01:00
parent 2c6bd52566
commit e6d7676df9
Signed by: robertvokac
GPG Key ID: FB9CE8E20AADA55F
137 changed files with 315 additions and 315 deletions
README.mdbuild.gradle
src/main/java/com/openeggbert/pixel/framework
ApplicationListener.javaDisposable.javaImportance.javaOnSetScreenListener.javaPixel.javaPixelApplication.javaPixelException.javaPixelFeature.javaPlatform.javaVersion.javaView.javaViewMode.java
app
audio
extension
files
game
graphics
input
interfaces
math
net

@ -1 +1 @@
# Pixel Game Library # Pixel Game Framework

@ -5,7 +5,7 @@ plugins {
id 'maven-publish' id 'maven-publish'
} }
group = 'com.pixelgamelibrary' group = 'com.openeggbert.pixel'
version = '0.0.0-SNAPSHOT' version = '0.0.0-SNAPSHOT'
repositories { repositories {
@ -47,7 +47,7 @@ test {
eclipse { eclipse {
project { project {
name = 'pixel' name = 'pixel-framework'
} }
} }
@ -61,10 +61,10 @@ idea {
} }
} }
// Include Pixel.gwt.xml in the JAR without moving it // Include pixelframework.gwt.xml in the JAR without moving it
jar { jar {
from(sourceSets.main.allSource) { from(sourceSets.main.allSource) {
include 'com/pixelgamelibrary/pixelapi.gwt.xml' include 'com/openeggbert/pixel/pixelframework.gwt.xml'
} }
} }
@ -87,8 +87,8 @@ task javadocJar(type: Jar) {
publishing { publishing {
publications { publications {
mavenJava(MavenPublication) { mavenJava(MavenPublication) {
artifactId 'pixel' artifactId 'pixel-framework'
groupId 'com.pixelgamelibrary' groupId 'com.openeggbert.pixel'
from components.java from components.java
artifact sourceJar artifact sourceJar

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api; package com.openeggbert.pixel.framework;
/** /**
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api; package com.openeggbert.pixel.framework;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api; package com.openeggbert.pixel.framework;
import lombok.Getter; import lombok.Getter;

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api; package com.openeggbert.pixel.framework;
import com.pixelgamelibrary.api.screen.Screen; import com.openeggbert.pixel.framework.screen.Screen;
/** /**
* *

@ -17,18 +17,18 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api; package com.openeggbert.pixel.framework;
import com.pixelgamelibrary.api.interfaces.PixelBackend; import com.openeggbert.pixel.framework.interfaces.PixelBackend;
import com.pixelgamelibrary.api.interfaces.Files; import com.openeggbert.pixel.framework.interfaces.Files;
import com.pixelgamelibrary.api.interfaces.Audio; import com.openeggbert.pixel.framework.interfaces.Audio;
import com.pixelgamelibrary.api.interfaces.Graphics; import com.openeggbert.pixel.framework.interfaces.Graphics;
import com.pixelgamelibrary.api.interfaces.Input; import com.openeggbert.pixel.framework.interfaces.Input;
import com.pixelgamelibrary.api.interfaces.Internal; import com.openeggbert.pixel.framework.interfaces.Internal;
import com.pixelgamelibrary.api.interfaces.Net; import com.openeggbert.pixel.framework.interfaces.Net;
import com.pixelgamelibrary.api.interfaces.Utils; import com.openeggbert.pixel.framework.interfaces.Utils;
import com.pixelgamelibrary.api.interfaces.App; import com.openeggbert.pixel.framework.interfaces.App;
import com.pixelgamelibrary.api.interfaces.Extension; import com.openeggbert.pixel.framework.interfaces.Extension;
/** /**
* *

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api; package com.openeggbert.pixel.framework;
import com.pixelgamelibrary.api.game.Game; import com.openeggbert.pixel.framework.game.Game;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api; package com.openeggbert.pixel.framework;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api; package com.openeggbert.pixel.framework;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api; package com.openeggbert.pixel.framework;
/** /**
* *

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api; package com.openeggbert.pixel.framework;
import com.pixelgamelibrary.api.PixelException; import com.openeggbert.pixel.framework.PixelException;
/** Represents the version of the game library. /** Represents the version of the game library.
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api; package com.openeggbert.pixel.framework;
/** /**
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api; package com.openeggbert.pixel.framework;
/** /**
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.app; package com.openeggbert.pixel.framework.app;
/** /**
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.app; package com.openeggbert.pixel.framework.app;
/** /**
* *

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.app; package com.openeggbert.pixel.framework.app;
import com.pixelgamelibrary.api.files.map.SimpleMap; import com.openeggbert.pixel.framework.files.map.SimpleMap;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.audio; package com.openeggbert.pixel.framework.audio;
/** /**
* The Music interface represents a longer audio track that can be controlled with playback functions. * The Music interface represents a longer audio track that can be controlled with playback functions.

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.audio; package com.openeggbert.pixel.framework.audio;
import com.pixelgamelibrary.api.Disposable; import com.openeggbert.pixel.framework.Disposable;
/** /**
* The Sound interface represents a short audio clip that can be played and controlled in various ways. * The Sound interface represents a short audio clip that can be played and controlled in various ways.

@ -17,10 +17,10 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.extension; package com.openeggbert.pixel.framework.extension;
import com.pixelgamelibrary.api.PixelException; import com.openeggbert.pixel.framework.PixelException;
import com.pixelgamelibrary.api.interfaces.Extension; import com.openeggbert.pixel.framework.interfaces.Extension;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files; package com.openeggbert.pixel.framework.files;
import java.util.List; import java.util.List;

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files; package com.openeggbert.pixel.framework.files;
import com.pixelgamelibrary.api.PixelException; import com.openeggbert.pixel.framework.PixelException;
/** /**
* FileException is a custom exception class that extends {@link PixelException}. * FileException is a custom exception class that extends {@link PixelException}.

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files; package com.openeggbert.pixel.framework.files;
import static com.pixelgamelibrary.api.files.RegularFileType.TEXT; import static com.openeggbert.pixel.framework.files.RegularFileType.TEXT;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files; package com.openeggbert.pixel.framework.files;
import com.pixelgamelibrary.api.Platform; import com.openeggbert.pixel.framework.Platform;
import java.util.List; import java.util.List;
/** /**

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files; package com.openeggbert.pixel.framework.files;
/** /**
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files; package com.openeggbert.pixel.framework.files;
/** /**

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files; package com.openeggbert.pixel.framework.files;
/** /**

@ -17,17 +17,17 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.map; package com.openeggbert.pixel.framework.files.map;
import com.pixelgamelibrary.api.Pixel; import com.openeggbert.pixel.framework.Pixel;
import com.pixelgamelibrary.api.Platform; import com.openeggbert.pixel.framework.Platform;
import com.pixelgamelibrary.api.files.FileType; import com.openeggbert.pixel.framework.files.FileType;
import com.pixelgamelibrary.api.files.RegularFileType; import com.openeggbert.pixel.framework.files.RegularFileType;
import com.pixelgamelibrary.api.files.FileException; import com.openeggbert.pixel.framework.files.FileException;
import com.pixelgamelibrary.api.files.FileSystemType; import com.openeggbert.pixel.framework.files.FileSystemType;
import java.util.List; import java.util.List;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import com.pixelgamelibrary.api.files.FileSystem; import com.openeggbert.pixel.framework.files.FileSystem;
/** /**
* Implementation of the FileSystem interface for managing a map-based file system. * Implementation of the FileSystem interface for managing a map-based file system.

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.map; package com.openeggbert.pixel.framework.files.map;
/** /**
* *

@ -18,12 +18,12 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.map; package com.openeggbert.pixel.framework.files.map;
import com.pixelgamelibrary.api.files.FileType; import com.openeggbert.pixel.framework.files.FileType;
import com.pixelgamelibrary.api.files.FileException; import com.openeggbert.pixel.framework.files.FileException;
import static com.pixelgamelibrary.api.files.FileType.DIRECTORY; import static com.openeggbert.pixel.framework.files.FileType.DIRECTORY;
import static com.pixelgamelibrary.api.files.FileType.FILE; import static com.openeggbert.pixel.framework.files.FileType.FILE;
/** /**
* *

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.map; package com.openeggbert.pixel.framework.files.map;
import com.pixelgamelibrary.api.Platform; import com.openeggbert.pixel.framework.Platform;
/** /**
* Implementation of FileSystem that uses an in-memory map for storing data. * Implementation of FileSystem that uses an in-memory map for storing data.

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.map; package com.openeggbert.pixel.framework.files.map;
import java.util.Collections; import java.util.Collections;
import java.util.HashMap; import java.util.HashMap;

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.map; package com.openeggbert.pixel.framework.files.map;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.shell; package com.openeggbert.pixel.framework.files.shell;
import java.util.function.Function; import java.util.function.Function;

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.shell; package com.openeggbert.pixel.framework.files.shell;
/** /**
* The {@code ShellCommand} interface defines the contract for commands that can be executed within * The {@code ShellCommand} interface defines the contract for commands that can be executed within

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.shell; package com.openeggbert.pixel.framework.files.shell;
import java.util.Arrays; import java.util.Arrays;
import java.util.Date; import java.util.Date;
@ -28,7 +28,7 @@ import java.util.Optional;
import java.util.function.Consumer; import java.util.function.Consumer;
import java.util.function.Function; import java.util.function.Function;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import com.pixelgamelibrary.api.files.FileSystem; import com.openeggbert.pixel.framework.files.FileSystem;
/** /**
* The ShellCommandLine class represents a command-line interface for interacting with file system. * The ShellCommandLine class represents a command-line interface for interacting with file system.

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.shell; package com.openeggbert.pixel.framework.files.shell;
/** /**
* The ShellCommandLineScanner class provides a command-line interface for interacting with * The ShellCommandLineScanner class provides a command-line interface for interacting with

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.shell; package com.openeggbert.pixel.framework.files.shell;
/** /**
* The ShellCommandResult class encapsulates the result of executing a file system command. * The ShellCommandResult class encapsulates the result of executing a file system command.

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.files.shell; package com.openeggbert.pixel.framework.files.shell;
/** /**
* The {@code CommandLineScanner} interface defines a contract for scanning input from a command line. * The {@code CommandLineScanner} interface defines a contract for scanning input from a command line.

@ -17,11 +17,11 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.game; package com.openeggbert.pixel.framework.game;
import com.pixelgamelibrary.api.ApplicationListener; import com.openeggbert.pixel.framework.ApplicationListener;
import com.pixelgamelibrary.api.OnSetScreenListener; import com.openeggbert.pixel.framework.OnSetScreenListener;
import com.pixelgamelibrary.api.screen.Screen; import com.openeggbert.pixel.framework.screen.Screen;
/** /**
* *

@ -18,10 +18,10 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.game; package com.openeggbert.pixel.framework.game;
import com.pixelgamelibrary.api.OnSetScreenListener; import com.openeggbert.pixel.framework.OnSetScreenListener;
import com.pixelgamelibrary.api.screen.Screen; import com.openeggbert.pixel.framework.screen.Screen;
/** /**
* *

@ -18,10 +18,10 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.game; package com.openeggbert.pixel.framework.game;
import com.pixelgamelibrary.api.OnSetScreenListener; import com.openeggbert.pixel.framework.OnSetScreenListener;
import com.pixelgamelibrary.api.screen.Screen; import com.openeggbert.pixel.framework.screen.Screen;
/** /**

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import lombok.Getter; import lombok.Getter;
import lombok.Setter; import lombok.Setter;

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
/** /**
* *

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Disposable; import com.openeggbert.pixel.framework.Disposable;
/** /**
* *

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.files.File; import com.openeggbert.pixel.framework.files.File;
/** /**
* *

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.math.Vector2; import com.openeggbert.pixel.framework.math.Vector2;
/** /**
* *

@ -17,16 +17,16 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Pixel; import com.openeggbert.pixel.framework.Pixel;
import com.pixelgamelibrary.api.PixelException; import com.openeggbert.pixel.framework.PixelException;
import static com.pixelgamelibrary.api.graphics.ColorDepth.BITS_16; import static com.openeggbert.pixel.framework.graphics.ColorDepth.BITS_16;
import static com.pixelgamelibrary.api.graphics.ColorDepth.BITS_24; import static com.openeggbert.pixel.framework.graphics.ColorDepth.BITS_24;
import static com.pixelgamelibrary.api.graphics.ColorDepth.BITS_32; import static com.openeggbert.pixel.framework.graphics.ColorDepth.BITS_32;
import static com.pixelgamelibrary.api.graphics.ColorDepth.BITS_4; import static com.openeggbert.pixel.framework.graphics.ColorDepth.BITS_4;
import static com.pixelgamelibrary.api.graphics.ColorDepth.BITS_8; import static com.openeggbert.pixel.framework.graphics.ColorDepth.BITS_8;
import com.pixelgamelibrary.api.utils.StringUtilsImpl; import com.openeggbert.pixel.framework.utils.StringUtilsImpl;
import java.util.BitSet; import java.util.BitSet;
import lombok.Data; import lombok.Data;

@ -1,4 +1,4 @@
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
// Pixel: Game library. // Pixel: Game library.

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.PixelException; import com.openeggbert.pixel.framework.PixelException;
import lombok.Getter; import lombok.Getter;
/** /**

@ -17,10 +17,10 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Pixel; import com.openeggbert.pixel.framework.Pixel;
import com.pixelgamelibrary.api.utils.BinaryUtils; import com.openeggbert.pixel.framework.utils.BinaryUtils;
import java.util.BitSet; import java.util.BitSet;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Getter; import lombok.Getter;

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
/** /**
* *

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Disposable; import com.openeggbert.pixel.framework.Disposable;
/** /**
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
/** /**
* Interface for drawable objects, providing methods for drawing shapes, * Interface for drawable objects, providing methods for drawing shapes,

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.ViewMode; import com.openeggbert.pixel.framework.ViewMode;
import java.util.List; import java.util.List;
/** /**

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Data; import lombok.Data;

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.files.File; import com.openeggbert.pixel.framework.files.File;
/** /**
* *

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Disposable; import com.openeggbert.pixel.framework.Disposable;
/** /**
* *

@ -17,11 +17,11 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Disposable; import com.openeggbert.pixel.framework.Disposable;
import com.pixelgamelibrary.api.math.Rectangle; import com.openeggbert.pixel.framework.math.Rectangle;
import com.pixelgamelibrary.api.math.Angle; import com.openeggbert.pixel.framework.math.Angle;
/** /**
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
/** /**
* *

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Disposable; import com.openeggbert.pixel.framework.Disposable;
/** /**
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
/** /**
* *

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.Disposable; import com.openeggbert.pixel.framework.Disposable;
/** /**
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
/** /**
* *

@ -18,9 +18,9 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
import com.pixelgamelibrary.api.files.File; import com.openeggbert.pixel.framework.files.File;
/** /**
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
/** /**
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.graphics; package com.openeggbert.pixel.framework.graphics;
/** /**
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.input; package com.openeggbert.pixel.framework.input;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.input; package com.openeggbert.pixel.framework.input;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.input; package com.openeggbert.pixel.framework.input;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.input; package com.openeggbert.pixel.framework.input;

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.input; package com.openeggbert.pixel.framework.input;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.input; package com.openeggbert.pixel.framework.input;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.input; package com.openeggbert.pixel.framework.input;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.input; package com.openeggbert.pixel.framework.input;
/** /**
* *

@ -18,7 +18,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.input; package com.openeggbert.pixel.framework.input;
/** /**
* *

@ -17,14 +17,14 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces; package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.PixelFeature; import com.openeggbert.pixel.framework.PixelFeature;
import com.pixelgamelibrary.api.Platform; import com.openeggbert.pixel.framework.Platform;
import com.pixelgamelibrary.api.game.Game; import com.openeggbert.pixel.framework.game.Game;
import com.pixelgamelibrary.api.app.ClipBoard; import com.openeggbert.pixel.framework.app.ClipBoard;
import com.pixelgamelibrary.api.app.LogLevel; import com.openeggbert.pixel.framework.app.LogLevel;
import com.pixelgamelibrary.api.app.Preferences; import com.openeggbert.pixel.framework.app.Preferences;
/** /**
* *

@ -17,11 +17,11 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces; package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.audio.Music; import com.openeggbert.pixel.framework.audio.Music;
import com.pixelgamelibrary.api.audio.Sound; import com.openeggbert.pixel.framework.audio.Sound;
import com.pixelgamelibrary.api.files.File; import com.openeggbert.pixel.framework.files.File;
/** /**
* *

@ -14,7 +14,7 @@
// If not, see <https://www.gnu.org/licenses/> or write to the Free Software Foundation, Inc., // If not, see <https://www.gnu.org/licenses/> or write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces; package com.openeggbert.pixel.framework.interfaces;
import java.util.List; import java.util.List;

@ -17,20 +17,20 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces; package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.files.FileException; import com.openeggbert.pixel.framework.files.FileException;
import com.pixelgamelibrary.api.files.FileSystemType; import com.openeggbert.pixel.framework.files.FileSystemType;
import static com.pixelgamelibrary.api.files.FileSystemType.ASSETS; import static com.openeggbert.pixel.framework.files.FileSystemType.ASSETS;
import static com.pixelgamelibrary.api.files.FileSystemType.EXTERNAL; import static com.openeggbert.pixel.framework.files.FileSystemType.EXTERNAL;
import com.pixelgamelibrary.api.files.FileSystem; import com.openeggbert.pixel.framework.files.FileSystem;
import com.pixelgamelibrary.api.files.File; import com.openeggbert.pixel.framework.files.File;
import static com.pixelgamelibrary.api.files.FileSystemType.ABSOLUTE; import static com.openeggbert.pixel.framework.files.FileSystemType.ABSOLUTE;
import static com.pixelgamelibrary.api.files.FileSystemType.ASSETS; import static com.openeggbert.pixel.framework.files.FileSystemType.ASSETS;
import static com.pixelgamelibrary.api.files.FileSystemType.EXTERNAL; import static com.openeggbert.pixel.framework.files.FileSystemType.EXTERNAL;
import static com.pixelgamelibrary.api.files.FileSystemType.LOCAL; import static com.openeggbert.pixel.framework.files.FileSystemType.LOCAL;
import static com.pixelgamelibrary.api.files.FileSystemType.RELATIVE; import static com.openeggbert.pixel.framework.files.FileSystemType.RELATIVE;
import static com.pixelgamelibrary.api.files.FileSystemType.TMP; import static com.openeggbert.pixel.framework.files.FileSystemType.TMP;
/** /**
* *

@ -17,20 +17,20 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces; package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.graphics.BitmapFont; import com.openeggbert.pixel.framework.graphics.BitmapFont;
import com.pixelgamelibrary.api.graphics.BitmapFontFactory; import com.openeggbert.pixel.framework.graphics.BitmapFontFactory;
import com.pixelgamelibrary.api.graphics.Cursor; import com.openeggbert.pixel.framework.graphics.Cursor;
import com.pixelgamelibrary.api.graphics.Monitor; import com.openeggbert.pixel.framework.graphics.Monitor;
import java.util.List; import java.util.List;
import com.pixelgamelibrary.api.graphics.Pixmap; import com.openeggbert.pixel.framework.graphics.Pixmap;
import com.pixelgamelibrary.api.graphics.SpriteBatch; import com.openeggbert.pixel.framework.graphics.SpriteBatch;
import com.pixelgamelibrary.api.graphics.SpriteBatchFactory; import com.openeggbert.pixel.framework.graphics.SpriteBatchFactory;
import com.pixelgamelibrary.api.graphics.Texture; import com.openeggbert.pixel.framework.graphics.Texture;
import com.pixelgamelibrary.api.graphics.TextureFactory; import com.openeggbert.pixel.framework.graphics.TextureFactory;
import com.pixelgamelibrary.api.graphics.TextureRegion; import com.openeggbert.pixel.framework.graphics.TextureRegion;
import com.pixelgamelibrary.api.files.File; import com.openeggbert.pixel.framework.files.File;
/** /**
* *

@ -17,17 +17,17 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces; package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.input.DeviceOrientation; import com.openeggbert.pixel.framework.input.DeviceOrientation;
import com.pixelgamelibrary.api.input.InputProcessor; import com.openeggbert.pixel.framework.input.InputProcessor;
import com.pixelgamelibrary.api.input.KeyboardKey; import com.openeggbert.pixel.framework.input.KeyboardKey;
import com.pixelgamelibrary.api.input.MouseButton; import com.openeggbert.pixel.framework.input.MouseButton;
import com.pixelgamelibrary.api.input.OnScreenKeyboardType; import com.openeggbert.pixel.framework.input.OnScreenKeyboardType;
import com.pixelgamelibrary.api.input.Peripheral; import com.openeggbert.pixel.framework.input.Peripheral;
import com.pixelgamelibrary.api.input.VibrationType; import com.openeggbert.pixel.framework.input.VibrationType;
import com.pixelgamelibrary.api.math.Vector2; import com.openeggbert.pixel.framework.math.Vector2;
import com.pixelgamelibrary.api.math.Vector3; import com.openeggbert.pixel.framework.math.Vector3;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces; package com.openeggbert.pixel.framework.interfaces;
/** /**

@ -17,14 +17,14 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces; package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.net.sockets.ClientSocket; import com.openeggbert.pixel.framework.net.sockets.ClientSocket;
import com.pixelgamelibrary.api.net.sockets.ServerSocket; import com.openeggbert.pixel.framework.net.sockets.ServerSocket;
import com.pixelgamelibrary.api.net.sockets.ClientSocketHints; import com.openeggbert.pixel.framework.net.sockets.ClientSocketHints;
import com.pixelgamelibrary.api.net.http.HttpRequest; import com.openeggbert.pixel.framework.net.http.HttpRequest;
import com.pixelgamelibrary.api.net.http.HttpResponseListener; import com.openeggbert.pixel.framework.net.http.HttpResponseListener;
import com.pixelgamelibrary.api.net.sockets.ServerSocketHints; import com.openeggbert.pixel.framework.net.sockets.ServerSocketHints;
/** /**
* *

@ -17,10 +17,10 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces; package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.PixelException; import com.openeggbert.pixel.framework.PixelException;
import com.pixelgamelibrary.api.extension.ExtensionImpl; import com.openeggbert.pixel.framework.extension.ExtensionImpl;
/** /**
* *

@ -17,13 +17,13 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces; package com.openeggbert.pixel.framework.interfaces;
import com.pixelgamelibrary.api.utils.BinaryUtilsImpl; import com.openeggbert.pixel.framework.utils.BinaryUtilsImpl;
import com.pixelgamelibrary.api.utils.CollectionUtils; import com.openeggbert.pixel.framework.utils.CollectionUtils;
import com.pixelgamelibrary.api.utils.ReflectionUtils; import com.openeggbert.pixel.framework.utils.ReflectionUtils;
import com.pixelgamelibrary.api.utils.StringUtils; import com.openeggbert.pixel.framework.utils.StringUtils;
import com.pixelgamelibrary.api.utils.StringUtilsImpl; import com.openeggbert.pixel.framework.utils.StringUtilsImpl;
import java.util.Arrays; import java.util.Arrays;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.interfaces; package com.openeggbert.pixel.framework.interfaces;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.math; package com.openeggbert.pixel.framework.math;
/** /**
* *

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.math; package com.openeggbert.pixel.framework.math;
/** /**
* *

@ -17,12 +17,12 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.math; package com.openeggbert.pixel.framework.math;
import com.pixelgamelibrary.api.PixelException; import com.openeggbert.pixel.framework.PixelException;
import static com.pixelgamelibrary.api.math.AngleUnit.GRADIAN; import static com.openeggbert.pixel.framework.math.AngleUnit.GRADIAN;
import static com.pixelgamelibrary.api.math.AngleUnit.NORMALIZED; import static com.openeggbert.pixel.framework.math.AngleUnit.NORMALIZED;
import static com.pixelgamelibrary.api.math.AngleUnit.RADIAN; import static com.openeggbert.pixel.framework.math.AngleUnit.RADIAN;
/** /**
* Utility class for converting between different angle units. * Utility class for converting between different angle units.

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.math; package com.openeggbert.pixel.framework.math;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Getter; import lombok.Getter;

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.math; package com.openeggbert.pixel.framework.math;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Getter; import lombok.Getter;

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.math; package com.openeggbert.pixel.framework.math;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Getter; import lombok.Getter;

@ -16,7 +16,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.net.http; package com.openeggbert.pixel.framework.net.http;
/** /**
* Enum representing the various HTTP methods used for making requests. * Enum representing the various HTTP methods used for making requests.

@ -16,7 +16,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.net.http; package com.openeggbert.pixel.framework.net.http;
import java.io.InputStream; import java.io.InputStream;
import java.util.HashMap; import java.util.HashMap;

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.net.http; package com.openeggbert.pixel.framework.net.http;
import com.pixelgamelibrary.api.Disposable; import com.openeggbert.pixel.framework.Disposable;
import java.io.InputStream; import java.io.InputStream;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.net.http; package com.openeggbert.pixel.framework.net.http;
import com.pixelgamelibrary.api.net.sockets.Socket; import com.openeggbert.pixel.framework.net.sockets.Socket;
/** /**
* @author robertvokac * @author robertvokac

@ -17,9 +17,9 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.net.http; package com.openeggbert.pixel.framework.net.http;
import com.pixelgamelibrary.api.PixelException; import com.openeggbert.pixel.framework.PixelException;
import java.util.Arrays; import java.util.Arrays;
import java.util.function.Supplier; import java.util.function.Supplier;
import lombok.Getter; import lombok.Getter;

@ -17,7 +17,7 @@
// <https://www.gnu.org/licenses/> or write to the Free Software // <https://www.gnu.org/licenses/> or write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
package com.pixelgamelibrary.api.net.sockets; package com.openeggbert.pixel.framework.net.sockets;
import java.io.InputStream; import java.io.InputStream;
import java.io.OutputStream; import java.io.OutputStream;

Some files were not shown because too many files have changed in this diff Show More