diff --git a/.gitignore b/.gitignore
index c2d904e5..5d05b6dc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,21 +15,14 @@ local.properties
*.orig
*.rej
-!jni/LuaJIT-2.0.1/android/armeabi/libluajit.a
-!jni/LuaJIT-2.0.1/android/armeabi-v7a/libluajit.a
-jni/LuaJIT-2.0.1/buildandroid.sh
-jni/LuaJIT-2.0.1/src/host/buildvm
-jni/LuaJIT-2.0.1/src/host/buildvm_arch.h
-jni/LuaJIT-2.0.1/src/host/minilua
-jni/LuaJIT-2.0.1/src/jit/vmdef.lua
-jni/LuaJIT-2.0.1/src/libluajit.a
-jni/LuaJIT-2.0.1/src/lj_bcdef.h
-jni/LuaJIT-2.0.1/src/lj_ffdef.h
-jni/LuaJIT-2.0.1/src/lj_folddef.h
-jni/LuaJIT-2.0.1/src/lj_libdef.h
-jni/LuaJIT-2.0.1/src/lj_recdef.h
-jni/LuaJIT-2.0.1/src/lj_vm.s
-jni/LuaJIT-2.0.1/src/luajit
+# Downloaded gradle wrapper
+.gradle
-jni/love/src/Makefile.am
+# Android Studio project files
+.idea
+*.iml
+
+# Gradle build files
+build
+.externalNativeBuild
\ No newline at end of file
diff --git a/.project b/.project
deleted file mode 100644
index b058e2ae..00000000
--- a/.project
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
- love_android_sdl2
-
-
-
-
-
- org.eclipse.ui.externaltools.ExternalToolBuilder
- full,incremental,
-
-
- LaunchConfigHandle
- <project>/.externalToolBuilders/[Löve] Generate Internal Scripts.launch
-
-
-
-
- org.eclipse.ui.externaltools.ExternalToolBuilder
- full,incremental,
-
-
- LaunchConfigHandle
- <project>/.externalToolBuilders/ndk-build.launch
-
-
-
-
- com.android.ide.eclipse.adt.ResourceManagerBuilder
-
-
-
-
- com.android.ide.eclipse.adt.PreCompilerBuilder
-
-
-
-
- org.eclipse.jdt.core.javabuilder
-
-
-
-
- com.android.ide.eclipse.adt.ApkBuilder
-
-
-
-
-
- com.android.ide.eclipse.adt.AndroidNature
- org.eclipse.jdt.core.javanature
-
-
diff --git a/README.md b/README.md
index a364c77e..bdb5c971 100644
--- a/README.md
+++ b/README.md
@@ -21,17 +21,15 @@ Install the Android NDK and the Android SDK with SDK API 23, set the
environment variables ```ANDROID_NDK```, ```ANDROID_SDK```, and
```ANDROID_HOME``` and run
- ndk-build -j4
+ ./gradlew build
-and after that
+in the root folder of this project. This should give you a .apk file in the
+app/build/outputs/apk/ subdirectory that you can then install on your phone.
- ant debug
+Alternatively, you can install Android Studio. After opening it for the first time,
+open it's SDK Manager and on the tab "SDK Tools", select NDK. After that, open the
+repository root.
-in the root folder of this project or load the project using Eclipse and
-compile/run it using Eclipse.
-
-This should give you a .apk file in the bin/ subdirectory that you can then
-install on your phone.
Bugs:
-----
@@ -152,7 +150,7 @@ License:
--------
This project contains code from multiple projects using various licenses.
-Please look into the folders of jni// for the respective
+Please look into the folders of love/src/jni// for the respective
licenses. A possibly incomplete overview of dependent and included
libraries and licenses is the following:
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 00000000..263ef5c9
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,29 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 25
+ buildToolsVersion "25.0.2"
+ defaultConfig {
+ applicationId "org.love2d.android"
+ versionCode 22
+ versionName "0.10.2"
+ minSdkVersion 10
+ targetSdkVersion 18
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+ lintOptions {
+ abortOnError false
+ }
+}
+
+dependencies {
+ compile 'com.android.support:multidex:1.0.1'
+ compile fileTree(dir: 'libs', include: ['*.jar'])
+ compile 'com.android.support:appcompat-v7:25.1.0'
+ compile project(':love')
+}
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro
new file mode 100644
index 00000000..05581714
--- /dev/null
+++ b/app/proguard-rules.pro
@@ -0,0 +1,23 @@
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in /Users/diglet/android-sdk-macosx/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the proguardFiles
+# directive in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+-keep class br.com.tapps.love.LoveActivity { *; }
+
+-keepclassmembers class br.com.tapps.love.LoveActivity {
+ public com.naef.jnlua.LuaState createLuaState();
+}
\ No newline at end of file
diff --git a/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
similarity index 85%
rename from AndroidManifest.xml
rename to app/src/main/AndroidManifest.xml
index 1e2fd477..dee04a95 100644
--- a/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -1,7 +1,5 @@
-
@@ -9,14 +7,17 @@
-
+
+
+
-
+
@@ -62,10 +63,4 @@
-
-
-
-
-
-
diff --git a/app/src/main/res/.gitignore b/app/src/main/res/.gitignore
new file mode 100644
index 00000000..74630c43
--- /dev/null
+++ b/app/src/main/res/.gitignore
@@ -0,0 +1,5 @@
+values/generated_strings.xml
+values/generated_integers.xml
+drawable-*/icon.png
+drawable-*/notificationicon.png
+mipmap-*/ic_launcher.png
diff --git a/res/drawable-hdpi/love.png b/app/src/main/res/drawable-hdpi/love.png
old mode 100755
new mode 100644
similarity index 100%
rename from res/drawable-hdpi/love.png
rename to app/src/main/res/drawable-hdpi/love.png
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/libMPG123/PLACE_LIBMPG123_SOURCES_HERE b/app/src/main/res/drawable-ldpi/.gitkeep
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/libMPG123/PLACE_LIBMPG123_SOURCES_HERE
rename to app/src/main/res/drawable-ldpi/.gitkeep
diff --git a/res/drawable-mdpi/love.png b/app/src/main/res/drawable-mdpi/love.png
old mode 100755
new mode 100644
similarity index 100%
rename from res/drawable-mdpi/love.png
rename to app/src/main/res/drawable-mdpi/love.png
diff --git a/res/drawable-xhdpi/love.png b/app/src/main/res/drawable-xhdpi/love.png
old mode 100755
new mode 100644
similarity index 100%
rename from res/drawable-xhdpi/love.png
rename to app/src/main/res/drawable-xhdpi/love.png
diff --git a/res/drawable-xxhdpi/love.png b/app/src/main/res/drawable-xxhdpi/love.png
old mode 100755
new mode 100644
similarity index 100%
rename from res/drawable-xxhdpi/love.png
rename to app/src/main/res/drawable-xxhdpi/love.png
diff --git a/res/drawable-xxxhdpi/love.png b/app/src/main/res/drawable-xxxhdpi/love.png
old mode 100755
new mode 100644
similarity index 100%
rename from res/drawable-xxxhdpi/love.png
rename to app/src/main/res/drawable-xxxhdpi/love.png
diff --git a/jni/openal-soft-1.17.0/build/.empty b/app/src/main/res/mipmap-hdpi/.gitkeep
similarity index 100%
rename from jni/openal-soft-1.17.0/build/.empty
rename to app/src/main/res/mipmap-hdpi/.gitkeep
diff --git a/app/src/main/res/mipmap-mdpi/.gitkeep b/app/src/main/res/mipmap-mdpi/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/app/src/main/res/values-w820dp/dimens.xml b/app/src/main/res/values-w820dp/dimens.xml
new file mode 100644
index 00000000..63fc8164
--- /dev/null
+++ b/app/src/main/res/values-w820dp/dimens.xml
@@ -0,0 +1,6 @@
+
+
+ 64dp
+
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
new file mode 100644
index 00000000..3ab3e9cb
--- /dev/null
+++ b/app/src/main/res/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #3F51B5
+ #303F9F
+ #FF4081
+
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
new file mode 100644
index 00000000..5885930d
--- /dev/null
+++ b/app/src/main/res/values/styles.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 00000000..e48302d0
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,17 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+
+buildscript {
+ repositories {
+ jcenter()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:2.2.3'
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}
diff --git a/build.xml b/build.xml
deleted file mode 100644
index 5a9fccad..00000000
--- a/build.xml
+++ /dev/null
@@ -1,93 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 00000000..13372aef
Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 00000000..04e285f3
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Mon Dec 28 10:00:20 PST 2015
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
diff --git a/gradlew b/gradlew
new file mode 100644
index 00000000..9d82f789
--- /dev/null
+++ b/gradlew
@@ -0,0 +1,160 @@
+#!/usr/bin/env bash
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn ( ) {
+ echo "$*"
+}
+
+die ( ) {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+esac
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
+function splitJvmOpts() {
+ JVM_OPTS=("$@")
+}
+eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
+JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
+
+exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
diff --git a/gradlew.bat b/gradlew.bat
new file mode 100644
index 00000000..8a0b282a
--- /dev/null
+++ b/gradlew.bat
@@ -0,0 +1,90 @@
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS=
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto init
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto init
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:init
+@rem Get command-line arguments, handling Windowz variants
+
+if not "%OS%" == "Windows_NT" goto win9xME_args
+if "%@eval[2+2]" == "4" goto 4NT_args
+
+:win9xME_args
+@rem Slurp the command line arguments.
+set CMD_LINE_ARGS=
+set _SKIP=2
+
+:win9xME_args_slurp
+if "x%~1" == "x" goto execute
+
+set CMD_LINE_ARGS=%*
+goto execute
+
+:4NT_args
+@rem Get arguments from the 4NT Shell from JP Software
+set CMD_LINE_ARGS=%$
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/jni/SDL2-2.0.5/android-project/ant.properties b/jni/SDL2-2.0.5/android-project/ant.properties
deleted file mode 100644
index b0971e89..00000000
--- a/jni/SDL2-2.0.5/android-project/ant.properties
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is used to override default values used by the Ant build system.
-#
-# This file must be checked into Version Control Systems, as it is
-# integral to the build system of your project.
-
-# This file is only used by the Ant script.
-
-# You can use this to override default values such as
-# 'source.dir' for the location of your java source folder and
-# 'out.dir' for the location of your output folder.
-
-# You can also use it define how the release builds are signed by declaring
-# the following properties:
-# 'key.store' for the location of your keystore and
-# 'key.alias' for the name of the key to use.
-# The password will be asked during the build when you use the 'release' target.
-
diff --git a/jni/SDL2-2.0.5/android-project/build.properties b/jni/SDL2-2.0.5/android-project/build.properties
deleted file mode 100644
index edc7f230..00000000
--- a/jni/SDL2-2.0.5/android-project/build.properties
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is used to override default values used by the Ant build system.
-#
-# This file must be checked in Version Control Systems, as it is
-# integral to the build system of your project.
-
-# This file is only used by the Ant script.
-
-# You can use this to override default values such as
-# 'source.dir' for the location of your java source folder and
-# 'out.dir' for the location of your output folder.
-
-# You can also use it define how the release builds are signed by declaring
-# the following properties:
-# 'key.store' for the location of your keystore and
-# 'key.alias' for the name of the key to use.
-# The password will be asked during the build when you use the 'release' target.
-
diff --git a/jni/SDL2-2.0.5/android-project/src/org/libsdl/app/SDLActivity.java b/jni/SDL2-2.0.5/android-project/src/org/libsdl/app/SDLActivity.java
deleted file mode 100644
index c3d44843..00000000
--- a/jni/SDL2-2.0.5/android-project/src/org/libsdl/app/SDLActivity.java
+++ /dev/null
@@ -1,1742 +0,0 @@
-package org.libsdl.app;
-
-import java.io.IOException;
-import java.io.InputStream;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.Collections;
-import java.util.Comparator;
-import java.util.List;
-import java.lang.reflect.Method;
-
-import android.app.*;
-import android.content.*;
-import android.text.InputType;
-import android.view.*;
-import android.view.inputmethod.BaseInputConnection;
-import android.view.inputmethod.EditorInfo;
-import android.view.inputmethod.InputConnection;
-import android.view.inputmethod.InputMethodManager;
-import android.widget.RelativeLayout;
-import android.widget.Button;
-import android.widget.LinearLayout;
-import android.widget.TextView;
-import android.os.*;
-import android.util.Log;
-import android.util.SparseArray;
-import android.graphics.*;
-import android.graphics.drawable.Drawable;
-import android.media.*;
-import android.hardware.*;
-import android.content.pm.ActivityInfo;
-
-/**
- SDL Activity
-*/
-public class SDLActivity extends Activity {
- private static final String TAG = "SDL";
-
- // Keep track of the paused state
- public static boolean mIsPaused, mIsSurfaceReady, mHasFocus;
- public static boolean mExitCalledFromJava;
-
- /** If shared libraries (e.g. SDL or the native application) could not be loaded. */
- public static boolean mBrokenLibraries;
-
- // If we want to separate mouse and touch events.
- // This is only toggled in native code when a hint is set!
- public static boolean mSeparateMouseAndTouch;
-
- // Main components
- protected static SDLActivity mSingleton;
- protected static SDLSurface mSurface;
- protected static View mTextEdit;
- protected static ViewGroup mLayout;
- protected static SDLJoystickHandler mJoystickHandler;
-
- // This is what SDL runs in. It invokes SDL_main(), eventually
- protected static Thread mSDLThread;
-
- // Audio
- protected static AudioTrack mAudioTrack;
- protected static AudioRecord mAudioRecord;
-
- /**
- * This method is called by SDL before loading the native shared libraries.
- * It can be overridden to provide names of shared libraries to be loaded.
- * The default implementation returns the defaults. It never returns null.
- * An array returned by a new implementation must at least contain "SDL2".
- * Also keep in mind that the order the libraries are loaded may matter.
- * @return names of shared libraries to be loaded (e.g. "SDL2", "main").
- */
- protected String[] getLibraries() {
- return new String[] {
- "SDL2",
- // "SDL2_image",
- // "SDL2_mixer",
- // "SDL2_net",
- // "SDL2_ttf",
- "main"
- };
- }
-
- // Load the .so
- public void loadLibraries() {
- for (String lib : getLibraries()) {
- System.loadLibrary(lib);
- }
- }
-
- /**
- * This method is called by SDL before starting the native application thread.
- * It can be overridden to provide the arguments after the application name.
- * The default implementation returns an empty array. It never returns null.
- * @return arguments for the native application.
- */
- protected String[] getArguments() {
- return new String[0];
- }
-
- public static void initialize() {
- // The static nature of the singleton and Android quirkyness force us to initialize everything here
- // Otherwise, when exiting the app and returning to it, these variables *keep* their pre exit values
- mSingleton = null;
- mSurface = null;
- mTextEdit = null;
- mLayout = null;
- mJoystickHandler = null;
- mSDLThread = null;
- mAudioTrack = null;
- mAudioRecord = null;
- mExitCalledFromJava = false;
- mBrokenLibraries = false;
- mIsPaused = false;
- mIsSurfaceReady = false;
- mHasFocus = true;
- }
-
- // Setup
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- Log.v(TAG, "Device: " + android.os.Build.DEVICE);
- Log.v(TAG, "Model: " + android.os.Build.MODEL);
- Log.v(TAG, "onCreate(): " + mSingleton);
- super.onCreate(savedInstanceState);
-
- SDLActivity.initialize();
- // So we can call stuff from static callbacks
- mSingleton = this;
-
- // Load shared libraries
- String errorMsgBrokenLib = "";
- try {
- loadLibraries();
- } catch(UnsatisfiedLinkError e) {
- System.err.println(e.getMessage());
- mBrokenLibraries = true;
- errorMsgBrokenLib = e.getMessage();
- } catch(Exception e) {
- System.err.println(e.getMessage());
- mBrokenLibraries = true;
- errorMsgBrokenLib = e.getMessage();
- }
-
- if (mBrokenLibraries)
- {
- AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this);
- dlgAlert.setMessage("An error occurred while trying to start the application. Please try again and/or reinstall."
- + System.getProperty("line.separator")
- + System.getProperty("line.separator")
- + "Error: " + errorMsgBrokenLib);
- dlgAlert.setTitle("SDL Error");
- dlgAlert.setPositiveButton("Exit",
- new DialogInterface.OnClickListener() {
- @Override
- public void onClick(DialogInterface dialog,int id) {
- // if this button is clicked, close current activity
- SDLActivity.mSingleton.finish();
- }
- });
- dlgAlert.setCancelable(false);
- dlgAlert.create().show();
-
- return;
- }
-
- // Set up the surface
- mSurface = new SDLSurface(getApplication());
-
- if(Build.VERSION.SDK_INT >= 12) {
- mJoystickHandler = new SDLJoystickHandler_API12();
- }
- else {
- mJoystickHandler = new SDLJoystickHandler();
- }
-
- mLayout = new RelativeLayout(this);
- mLayout.addView(mSurface);
-
- setContentView(mLayout);
-
- // Get filename from "Open with" of another application
- Intent intent = getIntent();
-
- if (intent != null && intent.getData() != null) {
- String filename = intent.getData().getPath();
- if (filename != null) {
- Log.v(TAG, "Got filename: " + filename);
- SDLActivity.onNativeDropFile(filename);
- }
- }
- }
-
- // Events
- @Override
- protected void onPause() {
- Log.v(TAG, "onPause()");
- super.onPause();
-
- if (SDLActivity.mBrokenLibraries) {
- return;
- }
-
- SDLActivity.handlePause();
- }
-
- @Override
- protected void onResume() {
- Log.v(TAG, "onResume()");
- super.onResume();
-
- if (SDLActivity.mBrokenLibraries) {
- return;
- }
-
- SDLActivity.handleResume();
- }
-
-
- @Override
- public void onWindowFocusChanged(boolean hasFocus) {
- super.onWindowFocusChanged(hasFocus);
- Log.v(TAG, "onWindowFocusChanged(): " + hasFocus);
-
- if (SDLActivity.mBrokenLibraries) {
- return;
- }
-
- SDLActivity.mHasFocus = hasFocus;
- if (hasFocus) {
- SDLActivity.handleResume();
- }
- }
-
- @Override
- public void onLowMemory() {
- Log.v(TAG, "onLowMemory()");
- super.onLowMemory();
-
- if (SDLActivity.mBrokenLibraries) {
- return;
- }
-
- SDLActivity.nativeLowMemory();
- }
-
- @Override
- protected void onDestroy() {
- Log.v(TAG, "onDestroy()");
-
- if (SDLActivity.mBrokenLibraries) {
- super.onDestroy();
- // Reset everything in case the user re opens the app
- SDLActivity.initialize();
- return;
- }
-
- // Send a quit message to the application
- SDLActivity.mExitCalledFromJava = true;
- SDLActivity.nativeQuit();
-
- // Now wait for the SDL thread to quit
- if (SDLActivity.mSDLThread != null) {
- try {
- SDLActivity.mSDLThread.join();
- } catch(Exception e) {
- Log.v(TAG, "Problem stopping thread: " + e);
- }
- SDLActivity.mSDLThread = null;
-
- //Log.v(TAG, "Finished waiting for SDL thread");
- }
-
- super.onDestroy();
- // Reset everything in case the user re opens the app
- SDLActivity.initialize();
- }
-
- @Override
- public boolean dispatchKeyEvent(KeyEvent event) {
-
- if (SDLActivity.mBrokenLibraries) {
- return false;
- }
-
- int keyCode = event.getKeyCode();
- // Ignore certain special keys so they're handled by Android
- if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN ||
- keyCode == KeyEvent.KEYCODE_VOLUME_UP ||
- keyCode == KeyEvent.KEYCODE_CAMERA ||
- keyCode == 168 || /* API 11: KeyEvent.KEYCODE_ZOOM_IN */
- keyCode == 169 /* API 11: KeyEvent.KEYCODE_ZOOM_OUT */
- ) {
- return false;
- }
- return super.dispatchKeyEvent(event);
- }
-
- /** Called by onPause or surfaceDestroyed. Even if surfaceDestroyed
- * is the first to be called, mIsSurfaceReady should still be set
- * to 'true' during the call to onPause (in a usual scenario).
- */
- public static void handlePause() {
- if (!SDLActivity.mIsPaused && SDLActivity.mIsSurfaceReady) {
- SDLActivity.mIsPaused = true;
- SDLActivity.nativePause();
- mSurface.handlePause();
- }
- }
-
- /** Called by onResume or surfaceCreated. An actual resume should be done only when the surface is ready.
- * Note: Some Android variants may send multiple surfaceChanged events, so we don't need to resume
- * every time we get one of those events, only if it comes after surfaceDestroyed
- */
- public static void handleResume() {
- if (SDLActivity.mIsPaused && SDLActivity.mIsSurfaceReady && SDLActivity.mHasFocus) {
- SDLActivity.mIsPaused = false;
- SDLActivity.nativeResume();
- mSurface.handleResume();
- }
- }
-
- /* The native thread has finished */
- public static void handleNativeExit() {
- SDLActivity.mSDLThread = null;
- mSingleton.finish();
- }
-
-
- // Messages from the SDLMain thread
- static final int COMMAND_CHANGE_TITLE = 1;
- static final int COMMAND_UNUSED = 2;
- static final int COMMAND_TEXTEDIT_HIDE = 3;
- static final int COMMAND_SET_KEEP_SCREEN_ON = 5;
-
- protected static final int COMMAND_USER = 0x8000;
-
- /**
- * This method is called by SDL if SDL did not handle a message itself.
- * This happens if a received message contains an unsupported command.
- * Method can be overwritten to handle Messages in a different class.
- * @param command the command of the message.
- * @param param the parameter of the message. May be null.
- * @return if the message was handled in overridden method.
- */
- protected boolean onUnhandledMessage(int command, Object param) {
- return false;
- }
-
- /**
- * A Handler class for Messages from native SDL applications.
- * It uses current Activities as target (e.g. for the title).
- * static to prevent implicit references to enclosing object.
- */
- protected static class SDLCommandHandler extends Handler {
- @Override
- public void handleMessage(Message msg) {
- Context context = getContext();
- if (context == null) {
- Log.e(TAG, "error handling message, getContext() returned null");
- return;
- }
- switch (msg.arg1) {
- case COMMAND_CHANGE_TITLE:
- if (context instanceof Activity) {
- ((Activity) context).setTitle((String)msg.obj);
- } else {
- Log.e(TAG, "error handling message, getContext() returned no Activity");
- }
- break;
- case COMMAND_TEXTEDIT_HIDE:
- if (mTextEdit != null) {
- // Note: On some devices setting view to GONE creates a flicker in landscape.
- // Setting the View's sizes to 0 is similar to GONE but without the flicker.
- // The sizes will be set to useful values when the keyboard is shown again.
- mTextEdit.setLayoutParams(new RelativeLayout.LayoutParams(0, 0));
-
- InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
- imm.hideSoftInputFromWindow(mTextEdit.getWindowToken(), 0);
- }
- break;
- case COMMAND_SET_KEEP_SCREEN_ON:
- {
- Window window = ((Activity) context).getWindow();
- if (window != null) {
- if ((msg.obj instanceof Integer) && (((Integer) msg.obj).intValue() != 0)) {
- window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
- } else {
- window.clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
- }
- }
- break;
- }
- default:
- if ((context instanceof SDLActivity) && !((SDLActivity) context).onUnhandledMessage(msg.arg1, msg.obj)) {
- Log.e(TAG, "error handling message, command is " + msg.arg1);
- }
- }
- }
- }
-
- // Handler for the messages
- Handler commandHandler = new SDLCommandHandler();
-
- // Send a message from the SDLMain thread
- boolean sendCommand(int command, Object data) {
- Message msg = commandHandler.obtainMessage();
- msg.arg1 = command;
- msg.obj = data;
- return commandHandler.sendMessage(msg);
- }
-
- // C functions we call
- public static native int nativeInit(Object arguments);
- public static native void nativeLowMemory();
- public static native void nativeQuit();
- public static native void nativePause();
- public static native void nativeResume();
- public static native void onNativeDropFile(String filename);
- public static native void onNativeResize(int x, int y, int format, float rate);
- public static native int onNativePadDown(int device_id, int keycode);
- public static native int onNativePadUp(int device_id, int keycode);
- public static native void onNativeJoy(int device_id, int axis,
- float value);
- public static native void onNativeHat(int device_id, int hat_id,
- int x, int y);
- public static native void onNativeKeyDown(int keycode);
- public static native void onNativeKeyUp(int keycode);
- public static native void onNativeKeyboardFocusLost();
- public static native void onNativeMouse(int button, int action, float x, float y);
- public static native void onNativeTouch(int touchDevId, int pointerFingerId,
- int action, float x,
- float y, float p);
- public static native void onNativeAccel(float x, float y, float z);
- public static native void onNativeSurfaceChanged();
- public static native void onNativeSurfaceDestroyed();
- public static native int nativeAddJoystick(int device_id, String name,
- int is_accelerometer, int nbuttons,
- int naxes, int nhats, int nballs);
- public static native int nativeRemoveJoystick(int device_id);
- public static native String nativeGetHint(String name);
-
- /**
- * This method is called by SDL using JNI.
- */
- public static boolean setActivityTitle(String title) {
- // Called from SDLMain() thread and can't directly affect the view
- return mSingleton.sendCommand(COMMAND_CHANGE_TITLE, title);
- }
-
- /**
- * This method is called by SDL using JNI.
- */
- public static boolean sendMessage(int command, int param) {
- return mSingleton.sendCommand(command, Integer.valueOf(param));
- }
-
- /**
- * This method is called by SDL using JNI.
- */
- public static Context getContext() {
- return mSingleton;
- }
-
- /**
- * This method is called by SDL using JNI.
- * @return result of getSystemService(name) but executed on UI thread.
- */
- public Object getSystemServiceFromUiThread(final String name) {
- final Object lock = new Object();
- final Object[] results = new Object[2]; // array for writable variables
- synchronized (lock) {
- runOnUiThread(new Runnable() {
- @Override
- public void run() {
- synchronized (lock) {
- results[0] = getSystemService(name);
- results[1] = Boolean.TRUE;
- lock.notify();
- }
- }
- });
- if (results[1] == null) {
- try {
- lock.wait();
- } catch (InterruptedException ex) {
- ex.printStackTrace();
- }
- }
- }
- return results[0];
- }
-
- static class ShowTextInputTask implements Runnable {
- /*
- * This is used to regulate the pan&scan method to have some offset from
- * the bottom edge of the input region and the top edge of an input
- * method (soft keyboard)
- */
- static final int HEIGHT_PADDING = 15;
-
- public int x, y, w, h;
-
- public ShowTextInputTask(int x, int y, int w, int h) {
- this.x = x;
- this.y = y;
- this.w = w;
- this.h = h;
- }
-
- @Override
- public void run() {
- RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(w, h + HEIGHT_PADDING);
- params.leftMargin = x;
- params.topMargin = y;
-
- if (mTextEdit == null) {
- mTextEdit = new DummyEdit(getContext());
-
- mLayout.addView(mTextEdit, params);
- } else {
- mTextEdit.setLayoutParams(params);
- }
-
- mTextEdit.setVisibility(View.VISIBLE);
- mTextEdit.requestFocus();
-
- InputMethodManager imm = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
- imm.showSoftInput(mTextEdit, 0);
- }
- }
-
- /**
- * This method is called by SDL using JNI.
- */
- public static boolean showTextInput(int x, int y, int w, int h) {
- // Transfer the task to the main thread as a Runnable
- return mSingleton.commandHandler.post(new ShowTextInputTask(x, y, w, h));
- }
-
- /**
- * This method is called by SDL using JNI.
- */
- public static Surface getNativeSurface() {
- return SDLActivity.mSurface.getNativeSurface();
- }
-
- // Audio
-
- /**
- * This method is called by SDL using JNI.
- */
- public static int audioOpen(int sampleRate, boolean is16Bit, boolean isStereo, int desiredFrames) {
- int channelConfig = isStereo ? AudioFormat.CHANNEL_CONFIGURATION_STEREO : AudioFormat.CHANNEL_CONFIGURATION_MONO;
- int audioFormat = is16Bit ? AudioFormat.ENCODING_PCM_16BIT : AudioFormat.ENCODING_PCM_8BIT;
- int frameSize = (isStereo ? 2 : 1) * (is16Bit ? 2 : 1);
-
- Log.v(TAG, "SDL audio: wanted " + (isStereo ? "stereo" : "mono") + " " + (is16Bit ? "16-bit" : "8-bit") + " " + (sampleRate / 1000f) + "kHz, " + desiredFrames + " frames buffer");
-
- // Let the user pick a larger buffer if they really want -- but ye
- // gods they probably shouldn't, the minimums are horrifyingly high
- // latency already
- desiredFrames = Math.max(desiredFrames, (AudioTrack.getMinBufferSize(sampleRate, channelConfig, audioFormat) + frameSize - 1) / frameSize);
-
- if (mAudioTrack == null) {
- mAudioTrack = new AudioTrack(AudioManager.STREAM_MUSIC, sampleRate,
- channelConfig, audioFormat, desiredFrames * frameSize, AudioTrack.MODE_STREAM);
-
- // Instantiating AudioTrack can "succeed" without an exception and the track may still be invalid
- // Ref: https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/media/java/android/media/AudioTrack.java
- // Ref: http://developer.android.com/reference/android/media/AudioTrack.html#getState()
-
- if (mAudioTrack.getState() != AudioTrack.STATE_INITIALIZED) {
- Log.e(TAG, "Failed during initialization of Audio Track");
- mAudioTrack = null;
- return -1;
- }
-
- mAudioTrack.play();
- }
-
- Log.v(TAG, "SDL audio: got " + ((mAudioTrack.getChannelCount() >= 2) ? "stereo" : "mono") + " " + ((mAudioTrack.getAudioFormat() == AudioFormat.ENCODING_PCM_16BIT) ? "16-bit" : "8-bit") + " " + (mAudioTrack.getSampleRate() / 1000f) + "kHz, " + desiredFrames + " frames buffer");
-
- return 0;
- }
-
- /**
- * This method is called by SDL using JNI.
- */
- public static void audioWriteShortBuffer(short[] buffer) {
- for (int i = 0; i < buffer.length; ) {
- int result = mAudioTrack.write(buffer, i, buffer.length - i);
- if (result > 0) {
- i += result;
- } else if (result == 0) {
- try {
- Thread.sleep(1);
- } catch(InterruptedException e) {
- // Nom nom
- }
- } else {
- Log.w(TAG, "SDL audio: error return from write(short)");
- return;
- }
- }
- }
-
- /**
- * This method is called by SDL using JNI.
- */
- public static void audioWriteByteBuffer(byte[] buffer) {
- for (int i = 0; i < buffer.length; ) {
- int result = mAudioTrack.write(buffer, i, buffer.length - i);
- if (result > 0) {
- i += result;
- } else if (result == 0) {
- try {
- Thread.sleep(1);
- } catch(InterruptedException e) {
- // Nom nom
- }
- } else {
- Log.w(TAG, "SDL audio: error return from write(byte)");
- return;
- }
- }
- }
-
- /**
- * This method is called by SDL using JNI.
- */
- public static int captureOpen(int sampleRate, boolean is16Bit, boolean isStereo, int desiredFrames) {
- int channelConfig = isStereo ? AudioFormat.CHANNEL_CONFIGURATION_STEREO : AudioFormat.CHANNEL_CONFIGURATION_MONO;
- int audioFormat = is16Bit ? AudioFormat.ENCODING_PCM_16BIT : AudioFormat.ENCODING_PCM_8BIT;
- int frameSize = (isStereo ? 2 : 1) * (is16Bit ? 2 : 1);
-
- Log.v(TAG, "SDL capture: wanted " + (isStereo ? "stereo" : "mono") + " " + (is16Bit ? "16-bit" : "8-bit") + " " + (sampleRate / 1000f) + "kHz, " + desiredFrames + " frames buffer");
-
- // Let the user pick a larger buffer if they really want -- but ye
- // gods they probably shouldn't, the minimums are horrifyingly high
- // latency already
- desiredFrames = Math.max(desiredFrames, (AudioRecord.getMinBufferSize(sampleRate, channelConfig, audioFormat) + frameSize - 1) / frameSize);
-
- if (mAudioRecord == null) {
- mAudioRecord = new AudioRecord(MediaRecorder.AudioSource.DEFAULT, sampleRate,
- channelConfig, audioFormat, desiredFrames * frameSize);
-
- // see notes about AudioTrack state in audioOpen(), above. Probably also applies here.
- if (mAudioRecord.getState() != AudioRecord.STATE_INITIALIZED) {
- Log.e(TAG, "Failed during initialization of AudioRecord");
- mAudioRecord.release();
- mAudioRecord = null;
- return -1;
- }
-
- mAudioRecord.startRecording();
- }
-
- Log.v(TAG, "SDL capture: got " + ((mAudioRecord.getChannelCount() >= 2) ? "stereo" : "mono") + " " + ((mAudioRecord.getAudioFormat() == AudioFormat.ENCODING_PCM_16BIT) ? "16-bit" : "8-bit") + " " + (mAudioRecord.getSampleRate() / 1000f) + "kHz, " + desiredFrames + " frames buffer");
-
- return 0;
- }
-
- /** This method is called by SDL using JNI. */
- public static int captureReadShortBuffer(short[] buffer, boolean blocking) {
- // !!! FIXME: this is available in API Level 23. Until then, we always block. :(
- //return mAudioRecord.read(buffer, 0, buffer.length, blocking ? AudioRecord.READ_BLOCKING : AudioRecord.READ_NON_BLOCKING);
- return mAudioRecord.read(buffer, 0, buffer.length);
- }
-
- /** This method is called by SDL using JNI. */
- public static int captureReadByteBuffer(byte[] buffer, boolean blocking) {
- // !!! FIXME: this is available in API Level 23. Until then, we always block. :(
- //return mAudioRecord.read(buffer, 0, buffer.length, blocking ? AudioRecord.READ_BLOCKING : AudioRecord.READ_NON_BLOCKING);
- return mAudioRecord.read(buffer, 0, buffer.length);
- }
-
-
- /** This method is called by SDL using JNI. */
- public static void audioClose() {
- if (mAudioTrack != null) {
- mAudioTrack.stop();
- mAudioTrack.release();
- mAudioTrack = null;
- }
- }
-
- /** This method is called by SDL using JNI. */
- public static void captureClose() {
- if (mAudioRecord != null) {
- mAudioRecord.stop();
- mAudioRecord.release();
- mAudioRecord = null;
- }
- }
-
-
- // Input
-
- /**
- * This method is called by SDL using JNI.
- * @return an array which may be empty but is never null.
- */
- public static int[] inputGetInputDeviceIds(int sources) {
- int[] ids = InputDevice.getDeviceIds();
- int[] filtered = new int[ids.length];
- int used = 0;
- for (int i = 0; i < ids.length; ++i) {
- InputDevice device = InputDevice.getDevice(ids[i]);
- if ((device != null) && ((device.getSources() & sources) != 0)) {
- filtered[used++] = device.getId();
- }
- }
- return Arrays.copyOf(filtered, used);
- }
-
- // Joystick glue code, just a series of stubs that redirect to the SDLJoystickHandler instance
- public static boolean handleJoystickMotionEvent(MotionEvent event) {
- return mJoystickHandler.handleMotionEvent(event);
- }
-
- /**
- * This method is called by SDL using JNI.
- */
- public static void pollInputDevices() {
- if (SDLActivity.mSDLThread != null) {
- mJoystickHandler.pollInputDevices();
- }
- }
-
- // Check if a given device is considered a possible SDL joystick
- public static boolean isDeviceSDLJoystick(int deviceId) {
- InputDevice device = InputDevice.getDevice(deviceId);
- // We cannot use InputDevice.isVirtual before API 16, so let's accept
- // only nonnegative device ids (VIRTUAL_KEYBOARD equals -1)
- if ((device == null) || (deviceId < 0)) {
- return false;
- }
- int sources = device.getSources();
- return (((sources & InputDevice.SOURCE_CLASS_JOYSTICK) == InputDevice.SOURCE_CLASS_JOYSTICK) ||
- ((sources & InputDevice.SOURCE_DPAD) == InputDevice.SOURCE_DPAD) ||
- ((sources & InputDevice.SOURCE_GAMEPAD) == InputDevice.SOURCE_GAMEPAD)
- );
- }
-
- // APK expansion files support
-
- /** com.android.vending.expansion.zipfile.ZipResourceFile object or null. */
- private Object expansionFile;
-
- /** com.android.vending.expansion.zipfile.ZipResourceFile's getInputStream() or null. */
- private Method expansionFileMethod;
-
- /**
- * This method is called by SDL using JNI.
- * @return an InputStream on success or null if no expansion file was used.
- * @throws IOException on errors. Message is set for the SDL error message.
- */
- public InputStream openAPKExpansionInputStream(String fileName) throws IOException {
- // Get a ZipResourceFile representing a merger of both the main and patch files
- if (expansionFile == null) {
- String mainHint = nativeGetHint("SDL_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION");
- if (mainHint == null) {
- return null; // no expansion use if no main version was set
- }
- String patchHint = nativeGetHint("SDL_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION");
- if (patchHint == null) {
- return null; // no expansion use if no patch version was set
- }
-
- Integer mainVersion;
- Integer patchVersion;
- try {
- mainVersion = Integer.valueOf(mainHint);
- patchVersion = Integer.valueOf(patchHint);
- } catch (NumberFormatException ex) {
- ex.printStackTrace();
- throw new IOException("No valid file versions set for APK expansion files", ex);
- }
-
- try {
- // To avoid direct dependency on Google APK expansion library that is
- // not a part of Android SDK we access it using reflection
- expansionFile = Class.forName("com.android.vending.expansion.zipfile.APKExpansionSupport")
- .getMethod("getAPKExpansionZipFile", Context.class, int.class, int.class)
- .invoke(null, this, mainVersion, patchVersion);
-
- expansionFileMethod = expansionFile.getClass()
- .getMethod("getInputStream", String.class);
- } catch (Exception ex) {
- ex.printStackTrace();
- expansionFile = null;
- expansionFileMethod = null;
- throw new IOException("Could not access APK expansion support library", ex);
- }
- }
-
- // Get an input stream for a known file inside the expansion file ZIPs
- InputStream fileStream;
- try {
- fileStream = (InputStream)expansionFileMethod.invoke(expansionFile, fileName);
- } catch (Exception ex) {
- // calling "getInputStream" failed
- ex.printStackTrace();
- throw new IOException("Could not open stream from APK expansion file", ex);
- }
-
- if (fileStream == null) {
- // calling "getInputStream" was successful but null was returned
- throw new IOException("Could not find path in APK expansion file");
- }
-
- return fileStream;
- }
-
- // Messagebox
-
- /** Result of current messagebox. Also used for blocking the calling thread. */
- protected final int[] messageboxSelection = new int[1];
-
- /** Id of current dialog. */
- protected int dialogs = 0;
-
- /**
- * This method is called by SDL using JNI.
- * Shows the messagebox from UI thread and block calling thread.
- * buttonFlags, buttonIds and buttonTexts must have same length.
- * @param buttonFlags array containing flags for every button.
- * @param buttonIds array containing id for every button.
- * @param buttonTexts array containing text for every button.
- * @param colors null for default or array of length 5 containing colors.
- * @return button id or -1.
- */
- public int messageboxShowMessageBox(
- final int flags,
- final String title,
- final String message,
- final int[] buttonFlags,
- final int[] buttonIds,
- final String[] buttonTexts,
- final int[] colors) {
-
- messageboxSelection[0] = -1;
-
- // sanity checks
-
- if ((buttonFlags.length != buttonIds.length) && (buttonIds.length != buttonTexts.length)) {
- return -1; // implementation broken
- }
-
- // collect arguments for Dialog
-
- final Bundle args = new Bundle();
- args.putInt("flags", flags);
- args.putString("title", title);
- args.putString("message", message);
- args.putIntArray("buttonFlags", buttonFlags);
- args.putIntArray("buttonIds", buttonIds);
- args.putStringArray("buttonTexts", buttonTexts);
- args.putIntArray("colors", colors);
-
- // trigger Dialog creation on UI thread
-
- runOnUiThread(new Runnable() {
- @Override
- public void run() {
- showDialog(dialogs++, args);
- }
- });
-
- // block the calling thread
-
- synchronized (messageboxSelection) {
- try {
- messageboxSelection.wait();
- } catch (InterruptedException ex) {
- ex.printStackTrace();
- return -1;
- }
- }
-
- // return selected value
-
- return messageboxSelection[0];
- }
-
- @Override
- protected Dialog onCreateDialog(int ignore, Bundle args) {
-
- // TODO set values from "flags" to messagebox dialog
-
- // get colors
-
- int[] colors = args.getIntArray("colors");
- int backgroundColor;
- int textColor;
- int buttonBorderColor;
- int buttonBackgroundColor;
- int buttonSelectedColor;
- if (colors != null) {
- int i = -1;
- backgroundColor = colors[++i];
- textColor = colors[++i];
- buttonBorderColor = colors[++i];
- buttonBackgroundColor = colors[++i];
- buttonSelectedColor = colors[++i];
- } else {
- backgroundColor = Color.TRANSPARENT;
- textColor = Color.TRANSPARENT;
- buttonBorderColor = Color.TRANSPARENT;
- buttonBackgroundColor = Color.TRANSPARENT;
- buttonSelectedColor = Color.TRANSPARENT;
- }
-
- // create dialog with title and a listener to wake up calling thread
-
- final Dialog dialog = new Dialog(this);
- dialog.setTitle(args.getString("title"));
- dialog.setCancelable(false);
- dialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
- @Override
- public void onDismiss(DialogInterface unused) {
- synchronized (messageboxSelection) {
- messageboxSelection.notify();
- }
- }
- });
-
- // create text
-
- TextView message = new TextView(this);
- message.setGravity(Gravity.CENTER);
- message.setText(args.getString("message"));
- if (textColor != Color.TRANSPARENT) {
- message.setTextColor(textColor);
- }
-
- // create buttons
-
- int[] buttonFlags = args.getIntArray("buttonFlags");
- int[] buttonIds = args.getIntArray("buttonIds");
- String[] buttonTexts = args.getStringArray("buttonTexts");
-
- final SparseArray mapping = new SparseArray();
-
- LinearLayout buttons = new LinearLayout(this);
- buttons.setOrientation(LinearLayout.HORIZONTAL);
- buttons.setGravity(Gravity.CENTER);
- for (int i = 0; i < buttonTexts.length; ++i) {
- Button button = new Button(this);
- final int id = buttonIds[i];
- button.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View v) {
- messageboxSelection[0] = id;
- dialog.dismiss();
- }
- });
- if (buttonFlags[i] != 0) {
- // see SDL_messagebox.h
- if ((buttonFlags[i] & 0x00000001) != 0) {
- mapping.put(KeyEvent.KEYCODE_ENTER, button);
- }
- if ((buttonFlags[i] & 0x00000002) != 0) {
- mapping.put(111, button); /* API 11: KeyEvent.KEYCODE_ESCAPE */
- }
- }
- button.setText(buttonTexts[i]);
- if (textColor != Color.TRANSPARENT) {
- button.setTextColor(textColor);
- }
- if (buttonBorderColor != Color.TRANSPARENT) {
- // TODO set color for border of messagebox button
- }
- if (buttonBackgroundColor != Color.TRANSPARENT) {
- Drawable drawable = button.getBackground();
- if (drawable == null) {
- // setting the color this way removes the style
- button.setBackgroundColor(buttonBackgroundColor);
- } else {
- // setting the color this way keeps the style (gradient, padding, etc.)
- drawable.setColorFilter(buttonBackgroundColor, PorterDuff.Mode.MULTIPLY);
- }
- }
- if (buttonSelectedColor != Color.TRANSPARENT) {
- // TODO set color for selected messagebox button
- }
- buttons.addView(button);
- }
-
- // create content
-
- LinearLayout content = new LinearLayout(this);
- content.setOrientation(LinearLayout.VERTICAL);
- content.addView(message);
- content.addView(buttons);
- if (backgroundColor != Color.TRANSPARENT) {
- content.setBackgroundColor(backgroundColor);
- }
-
- // add content to dialog and return
-
- dialog.setContentView(content);
- dialog.setOnKeyListener(new Dialog.OnKeyListener() {
- @Override
- public boolean onKey(DialogInterface d, int keyCode, KeyEvent event) {
- Button button = mapping.get(keyCode);
- if (button != null) {
- if (event.getAction() == KeyEvent.ACTION_UP) {
- button.performClick();
- }
- return true; // also for ignored actions
- }
- return false;
- }
- });
-
- return dialog;
- }
-}
-
-/**
- Simple nativeInit() runnable
-*/
-class SDLMain implements Runnable {
- @Override
- public void run() {
- // Runs SDL_main()
- SDLActivity.nativeInit(SDLActivity.mSingleton.getArguments());
-
- //Log.v("SDL", "SDL thread terminated");
- }
-}
-
-
-/**
- SDLSurface. This is what we draw on, so we need to know when it's created
- in order to do anything useful.
-
- Because of this, that's where we set up the SDL thread
-*/
-class SDLSurface extends SurfaceView implements SurfaceHolder.Callback,
- View.OnKeyListener, View.OnTouchListener, SensorEventListener {
-
- // Sensors
- protected static SensorManager mSensorManager;
- protected static Display mDisplay;
-
- // Keep track of the surface size to normalize touch events
- protected static float mWidth, mHeight;
-
- // Startup
- public SDLSurface(Context context) {
- super(context);
- getHolder().addCallback(this);
-
- setFocusable(true);
- setFocusableInTouchMode(true);
- requestFocus();
- setOnKeyListener(this);
- setOnTouchListener(this);
-
- mDisplay = ((WindowManager)context.getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
- mSensorManager = (SensorManager)context.getSystemService(Context.SENSOR_SERVICE);
-
- if(Build.VERSION.SDK_INT >= 12) {
- setOnGenericMotionListener(new SDLGenericMotionListener_API12());
- }
-
- // Some arbitrary defaults to avoid a potential division by zero
- mWidth = 1.0f;
- mHeight = 1.0f;
- }
-
- public void handlePause() {
- enableSensor(Sensor.TYPE_ACCELEROMETER, false);
- }
-
- public void handleResume() {
- setFocusable(true);
- setFocusableInTouchMode(true);
- requestFocus();
- setOnKeyListener(this);
- setOnTouchListener(this);
- enableSensor(Sensor.TYPE_ACCELEROMETER, true);
- }
-
- public Surface getNativeSurface() {
- return getHolder().getSurface();
- }
-
- // Called when we have a valid drawing surface
- @Override
- public void surfaceCreated(SurfaceHolder holder) {
- Log.v("SDL", "surfaceCreated()");
- holder.setType(SurfaceHolder.SURFACE_TYPE_GPU);
- }
-
- // Called when we lose the surface
- @Override
- public void surfaceDestroyed(SurfaceHolder holder) {
- Log.v("SDL", "surfaceDestroyed()");
- // Call this *before* setting mIsSurfaceReady to 'false'
- SDLActivity.handlePause();
- SDLActivity.mIsSurfaceReady = false;
- SDLActivity.onNativeSurfaceDestroyed();
- }
-
- // Called when the surface is resized
- @Override
- public void surfaceChanged(SurfaceHolder holder,
- int format, int width, int height) {
- Log.v("SDL", "surfaceChanged()");
-
- int sdlFormat = 0x15151002; // SDL_PIXELFORMAT_RGB565 by default
- switch (format) {
- case PixelFormat.A_8:
- Log.v("SDL", "pixel format A_8");
- break;
- case PixelFormat.LA_88:
- Log.v("SDL", "pixel format LA_88");
- break;
- case PixelFormat.L_8:
- Log.v("SDL", "pixel format L_8");
- break;
- case PixelFormat.RGBA_4444:
- Log.v("SDL", "pixel format RGBA_4444");
- sdlFormat = 0x15421002; // SDL_PIXELFORMAT_RGBA4444
- break;
- case PixelFormat.RGBA_5551:
- Log.v("SDL", "pixel format RGBA_5551");
- sdlFormat = 0x15441002; // SDL_PIXELFORMAT_RGBA5551
- break;
- case PixelFormat.RGBA_8888:
- Log.v("SDL", "pixel format RGBA_8888");
- sdlFormat = 0x16462004; // SDL_PIXELFORMAT_RGBA8888
- break;
- case PixelFormat.RGBX_8888:
- Log.v("SDL", "pixel format RGBX_8888");
- sdlFormat = 0x16261804; // SDL_PIXELFORMAT_RGBX8888
- break;
- case PixelFormat.RGB_332:
- Log.v("SDL", "pixel format RGB_332");
- sdlFormat = 0x14110801; // SDL_PIXELFORMAT_RGB332
- break;
- case PixelFormat.RGB_565:
- Log.v("SDL", "pixel format RGB_565");
- sdlFormat = 0x15151002; // SDL_PIXELFORMAT_RGB565
- break;
- case PixelFormat.RGB_888:
- Log.v("SDL", "pixel format RGB_888");
- // Not sure this is right, maybe SDL_PIXELFORMAT_RGB24 instead?
- sdlFormat = 0x16161804; // SDL_PIXELFORMAT_RGB888
- break;
- default:
- Log.v("SDL", "pixel format unknown " + format);
- break;
- }
-
- mWidth = width;
- mHeight = height;
- SDLActivity.onNativeResize(width, height, sdlFormat, mDisplay.getRefreshRate());
- Log.v("SDL", "Window size: " + width + "x" + height);
-
-
- boolean skip = false;
- int requestedOrientation = SDLActivity.mSingleton.getRequestedOrientation();
-
- if (requestedOrientation == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED)
- {
- // Accept any
- }
- else if (requestedOrientation == ActivityInfo.SCREEN_ORIENTATION_PORTRAIT)
- {
- if (mWidth > mHeight) {
- skip = true;
- }
- } else if (requestedOrientation == ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE) {
- if (mWidth < mHeight) {
- skip = true;
- }
- }
-
- // Special Patch for Square Resolution: Black Berry Passport
- if (skip) {
- double min = Math.min(mWidth, mHeight);
- double max = Math.max(mWidth, mHeight);
-
- if (max / min < 1.20) {
- Log.v("SDL", "Don't skip on such aspect-ratio. Could be a square resolution.");
- skip = false;
- }
- }
-
- if (skip) {
- Log.v("SDL", "Skip .. Surface is not ready.");
- return;
- }
-
-
- // Set mIsSurfaceReady to 'true' *before* making a call to handleResume
- SDLActivity.mIsSurfaceReady = true;
- SDLActivity.onNativeSurfaceChanged();
-
-
- if (SDLActivity.mSDLThread == null) {
- // This is the entry point to the C app.
- // Start up the C app thread and enable sensor input for the first time
-
- final Thread sdlThread = new Thread(new SDLMain(), "SDLThread");
- enableSensor(Sensor.TYPE_ACCELEROMETER, true);
- sdlThread.start();
-
- // Set up a listener thread to catch when the native thread ends
- SDLActivity.mSDLThread = new Thread(new Runnable(){
- @Override
- public void run(){
- try {
- sdlThread.join();
- }
- catch(Exception e){}
- finally{
- // Native thread has finished
- if (! SDLActivity.mExitCalledFromJava) {
- SDLActivity.handleNativeExit();
- }
- }
- }
- }, "SDLThreadListener");
- SDLActivity.mSDLThread.start();
- }
-
- if (SDLActivity.mHasFocus) {
- SDLActivity.handleResume();
- }
- }
-
- // Key events
- @Override
- public boolean onKey(View v, int keyCode, KeyEvent event) {
- // Dispatch the different events depending on where they come from
- // Some SOURCE_JOYSTICK, SOURCE_DPAD or SOURCE_GAMEPAD are also SOURCE_KEYBOARD
- // So, we try to process them as JOYSTICK/DPAD/GAMEPAD events first, if that fails we try them as KEYBOARD
- //
- // Furthermore, it's possible a game controller has SOURCE_KEYBOARD and
- // SOURCE_JOYSTICK, while its key events arrive from the keyboard source
- // So, retrieve the device itself and check all of its sources
- if (SDLActivity.isDeviceSDLJoystick(event.getDeviceId())) {
- // Note that we process events with specific key codes here
- if (event.getAction() == KeyEvent.ACTION_DOWN) {
- if (SDLActivity.onNativePadDown(event.getDeviceId(), keyCode) == 0) {
- return true;
- }
- } else if (event.getAction() == KeyEvent.ACTION_UP) {
- if (SDLActivity.onNativePadUp(event.getDeviceId(), keyCode) == 0) {
- return true;
- }
- }
- }
-
- if ((event.getSource() & InputDevice.SOURCE_KEYBOARD) != 0) {
- if (event.getAction() == KeyEvent.ACTION_DOWN) {
- //Log.v("SDL", "key down: " + keyCode);
- SDLActivity.onNativeKeyDown(keyCode);
- return true;
- }
- else if (event.getAction() == KeyEvent.ACTION_UP) {
- //Log.v("SDL", "key up: " + keyCode);
- SDLActivity.onNativeKeyUp(keyCode);
- return true;
- }
- }
-
- if ((event.getSource() & InputDevice.SOURCE_MOUSE) != 0) {
- // on some devices key events are sent for mouse BUTTON_BACK/FORWARD presses
- // they are ignored here because sending them as mouse input to SDL is messy
- if ((keyCode == KeyEvent.KEYCODE_BACK) || (keyCode == KeyEvent.KEYCODE_FORWARD)) {
- switch (event.getAction()) {
- case KeyEvent.ACTION_DOWN:
- case KeyEvent.ACTION_UP:
- // mark the event as handled or it will be handled by system
- // handling KEYCODE_BACK by system will call onBackPressed()
- return true;
- }
- }
- }
-
- return false;
- }
-
- // Touch events
- @Override
- public boolean onTouch(View v, MotionEvent event) {
- /* Ref: http://developer.android.com/training/gestures/multi.html */
- final int touchDevId = event.getDeviceId();
- final int pointerCount = event.getPointerCount();
- int action = event.getActionMasked();
- int pointerFingerId;
- int mouseButton;
- int i = -1;
- float x,y,p;
-
- // !!! FIXME: dump this SDK check after 2.0.4 ships and require API14.
- if (event.getSource() == InputDevice.SOURCE_MOUSE && SDLActivity.mSeparateMouseAndTouch) {
- if (Build.VERSION.SDK_INT < 14) {
- mouseButton = 1; // all mouse buttons are the left button
- } else {
- try {
- mouseButton = (Integer) event.getClass().getMethod("getButtonState").invoke(event);
- } catch(Exception e) {
- mouseButton = 1; // oh well.
- }
- }
- SDLActivity.onNativeMouse(mouseButton, action, event.getX(0), event.getY(0));
- } else {
- switch(action) {
- case MotionEvent.ACTION_MOVE:
- for (i = 0; i < pointerCount; i++) {
- pointerFingerId = event.getPointerId(i);
- x = event.getX(i) / mWidth;
- y = event.getY(i) / mHeight;
- p = event.getPressure(i);
- if (p > 1.0f) {
- // may be larger than 1.0f on some devices
- // see the documentation of getPressure(i)
- p = 1.0f;
- }
- SDLActivity.onNativeTouch(touchDevId, pointerFingerId, action, x, y, p);
- }
- break;
-
- case MotionEvent.ACTION_UP:
- case MotionEvent.ACTION_DOWN:
- // Primary pointer up/down, the index is always zero
- i = 0;
- case MotionEvent.ACTION_POINTER_UP:
- case MotionEvent.ACTION_POINTER_DOWN:
- // Non primary pointer up/down
- if (i == -1) {
- i = event.getActionIndex();
- }
-
- pointerFingerId = event.getPointerId(i);
- x = event.getX(i) / mWidth;
- y = event.getY(i) / mHeight;
- p = event.getPressure(i);
- if (p > 1.0f) {
- // may be larger than 1.0f on some devices
- // see the documentation of getPressure(i)
- p = 1.0f;
- }
- SDLActivity.onNativeTouch(touchDevId, pointerFingerId, action, x, y, p);
- break;
-
- case MotionEvent.ACTION_CANCEL:
- for (i = 0; i < pointerCount; i++) {
- pointerFingerId = event.getPointerId(i);
- x = event.getX(i) / mWidth;
- y = event.getY(i) / mHeight;
- p = event.getPressure(i);
- if (p > 1.0f) {
- // may be larger than 1.0f on some devices
- // see the documentation of getPressure(i)
- p = 1.0f;
- }
- SDLActivity.onNativeTouch(touchDevId, pointerFingerId, MotionEvent.ACTION_UP, x, y, p);
- }
- break;
-
- default:
- break;
- }
- }
-
- return true;
- }
-
- // Sensor events
- public void enableSensor(int sensortype, boolean enabled) {
- // TODO: This uses getDefaultSensor - what if we have >1 accels?
- if (enabled) {
- mSensorManager.registerListener(this,
- mSensorManager.getDefaultSensor(sensortype),
- SensorManager.SENSOR_DELAY_GAME, null);
- } else {
- mSensorManager.unregisterListener(this,
- mSensorManager.getDefaultSensor(sensortype));
- }
- }
-
- @Override
- public void onAccuracyChanged(Sensor sensor, int accuracy) {
- // TODO
- }
-
- @Override
- public void onSensorChanged(SensorEvent event) {
- if (event.sensor.getType() == Sensor.TYPE_ACCELEROMETER) {
- float x, y;
- switch (mDisplay.getRotation()) {
- case Surface.ROTATION_90:
- x = -event.values[1];
- y = event.values[0];
- break;
- case Surface.ROTATION_270:
- x = event.values[1];
- y = -event.values[0];
- break;
- case Surface.ROTATION_180:
- x = -event.values[1];
- y = -event.values[0];
- break;
- default:
- x = event.values[0];
- y = event.values[1];
- break;
- }
- SDLActivity.onNativeAccel(-x / SensorManager.GRAVITY_EARTH,
- y / SensorManager.GRAVITY_EARTH,
- event.values[2] / SensorManager.GRAVITY_EARTH);
- }
- }
-}
-
-/* This is a fake invisible editor view that receives the input and defines the
- * pan&scan region
- */
-class DummyEdit extends View implements View.OnKeyListener {
- InputConnection ic;
-
- public DummyEdit(Context context) {
- super(context);
- setFocusableInTouchMode(true);
- setFocusable(true);
- setOnKeyListener(this);
- }
-
- @Override
- public boolean onCheckIsTextEditor() {
- return true;
- }
-
- @Override
- public boolean onKey(View v, int keyCode, KeyEvent event) {
-
- // This handles the hardware keyboard input
- if (event.isPrintingKey() || keyCode == KeyEvent.KEYCODE_SPACE) {
- if (event.getAction() == KeyEvent.ACTION_DOWN) {
- ic.commitText(String.valueOf((char) event.getUnicodeChar()), 1);
- }
- return true;
- }
-
- if (event.getAction() == KeyEvent.ACTION_DOWN) {
- SDLActivity.onNativeKeyDown(keyCode);
- return true;
- } else if (event.getAction() == KeyEvent.ACTION_UP) {
- SDLActivity.onNativeKeyUp(keyCode);
- return true;
- }
-
- return false;
- }
-
- //
- @Override
- public boolean onKeyPreIme (int keyCode, KeyEvent event) {
- // As seen on StackOverflow: http://stackoverflow.com/questions/7634346/keyboard-hide-event
- // FIXME: Discussion at http://bugzilla.libsdl.org/show_bug.cgi?id=1639
- // FIXME: This is not a 100% effective solution to the problem of detecting if the keyboard is showing or not
- // FIXME: A more effective solution would be to assume our Layout to be RelativeLayout or LinearLayout
- // FIXME: And determine the keyboard presence doing this: http://stackoverflow.com/questions/2150078/how-to-check-visibility-of-software-keyboard-in-android
- // FIXME: An even more effective way would be if Android provided this out of the box, but where would the fun be in that :)
- if (event.getAction()==KeyEvent.ACTION_UP && keyCode == KeyEvent.KEYCODE_BACK) {
- if (SDLActivity.mTextEdit != null && SDLActivity.mTextEdit.getVisibility() == View.VISIBLE) {
- SDLActivity.onNativeKeyboardFocusLost();
- }
- }
- return super.onKeyPreIme(keyCode, event);
- }
-
- @Override
- public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
- ic = new SDLInputConnection(this, true);
-
- outAttrs.inputType = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD;
- outAttrs.imeOptions = EditorInfo.IME_FLAG_NO_EXTRACT_UI
- | 33554432 /* API 11: EditorInfo.IME_FLAG_NO_FULLSCREEN */;
-
- return ic;
- }
-}
-
-class SDLInputConnection extends BaseInputConnection {
-
- public SDLInputConnection(View targetView, boolean fullEditor) {
- super(targetView, fullEditor);
-
- }
-
- @Override
- public boolean sendKeyEvent(KeyEvent event) {
-
- /*
- * This handles the keycodes from soft keyboard (and IME-translated
- * input from hardkeyboard)
- */
- int keyCode = event.getKeyCode();
- if (event.getAction() == KeyEvent.ACTION_DOWN) {
- if (event.isPrintingKey() || keyCode == KeyEvent.KEYCODE_SPACE) {
- commitText(String.valueOf((char) event.getUnicodeChar()), 1);
- }
- SDLActivity.onNativeKeyDown(keyCode);
- return true;
- } else if (event.getAction() == KeyEvent.ACTION_UP) {
-
- SDLActivity.onNativeKeyUp(keyCode);
- return true;
- }
- return super.sendKeyEvent(event);
- }
-
- @Override
- public boolean commitText(CharSequence text, int newCursorPosition) {
-
- nativeCommitText(text.toString(), newCursorPosition);
-
- return super.commitText(text, newCursorPosition);
- }
-
- @Override
- public boolean setComposingText(CharSequence text, int newCursorPosition) {
-
- nativeSetComposingText(text.toString(), newCursorPosition);
-
- return super.setComposingText(text, newCursorPosition);
- }
-
- public native void nativeCommitText(String text, int newCursorPosition);
-
- public native void nativeSetComposingText(String text, int newCursorPosition);
-
- @Override
- public boolean deleteSurroundingText(int beforeLength, int afterLength) {
- // Workaround to capture backspace key. Ref: http://stackoverflow.com/questions/14560344/android-backspace-in-webview-baseinputconnection
- if (beforeLength == 1 && afterLength == 0) {
- // backspace
- return super.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_DEL))
- && super.sendKeyEvent(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_DEL));
- }
-
- return super.deleteSurroundingText(beforeLength, afterLength);
- }
-}
-
-/* A null joystick handler for API level < 12 devices (the accelerometer is handled separately) */
-class SDLJoystickHandler {
-
- /**
- * Handles given MotionEvent.
- * @param event the event to be handled.
- * @return if given event was processed.
- */
- public boolean handleMotionEvent(MotionEvent event) {
- return false;
- }
-
- /**
- * Handles adding and removing of input devices.
- */
- public void pollInputDevices() {
- }
-}
-
-/* Actual joystick functionality available for API >= 12 devices */
-class SDLJoystickHandler_API12 extends SDLJoystickHandler {
-
- static class SDLJoystick {
- public int device_id;
- public String name;
- public ArrayList axes;
- public ArrayList hats;
- }
- static class RangeComparator implements Comparator {
- @Override
- public int compare(InputDevice.MotionRange arg0, InputDevice.MotionRange arg1) {
- return arg0.getAxis() - arg1.getAxis();
- }
- }
-
- private ArrayList mJoysticks;
-
- public SDLJoystickHandler_API12() {
-
- mJoysticks = new ArrayList();
- }
-
- @Override
- public void pollInputDevices() {
- int[] deviceIds = InputDevice.getDeviceIds();
- // It helps processing the device ids in reverse order
- // For example, in the case of the XBox 360 wireless dongle,
- // so the first controller seen by SDL matches what the receiver
- // considers to be the first controller
-
- for(int i=deviceIds.length-1; i>-1; i--) {
- SDLJoystick joystick = getJoystick(deviceIds[i]);
- if (joystick == null) {
- joystick = new SDLJoystick();
- InputDevice joystickDevice = InputDevice.getDevice(deviceIds[i]);
- if (SDLActivity.isDeviceSDLJoystick(deviceIds[i])) {
- joystick.device_id = deviceIds[i];
- joystick.name = joystickDevice.getName();
- joystick.axes = new ArrayList();
- joystick.hats = new ArrayList();
-
- List ranges = joystickDevice.getMotionRanges();
- Collections.sort(ranges, new RangeComparator());
- for (InputDevice.MotionRange range : ranges ) {
- if ((range.getSource() & InputDevice.SOURCE_CLASS_JOYSTICK) != 0) {
- if (range.getAxis() == MotionEvent.AXIS_HAT_X ||
- range.getAxis() == MotionEvent.AXIS_HAT_Y) {
- joystick.hats.add(range);
- }
- else {
- joystick.axes.add(range);
- }
- }
- }
-
- mJoysticks.add(joystick);
- SDLActivity.nativeAddJoystick(joystick.device_id, joystick.name, 0, -1,
- joystick.axes.size(), joystick.hats.size()/2, 0);
- }
- }
- }
-
- /* Check removed devices */
- ArrayList removedDevices = new ArrayList();
- for(int i=0; i < mJoysticks.size(); i++) {
- int device_id = mJoysticks.get(i).device_id;
- int j;
- for (j=0; j < deviceIds.length; j++) {
- if (device_id == deviceIds[j]) break;
- }
- if (j == deviceIds.length) {
- removedDevices.add(Integer.valueOf(device_id));
- }
- }
-
- for(int i=0; i < removedDevices.size(); i++) {
- int device_id = removedDevices.get(i).intValue();
- SDLActivity.nativeRemoveJoystick(device_id);
- for (int j=0; j < mJoysticks.size(); j++) {
- if (mJoysticks.get(j).device_id == device_id) {
- mJoysticks.remove(j);
- break;
- }
- }
- }
- }
-
- protected SDLJoystick getJoystick(int device_id) {
- for(int i=0; i < mJoysticks.size(); i++) {
- if (mJoysticks.get(i).device_id == device_id) {
- return mJoysticks.get(i);
- }
- }
- return null;
- }
-
- @Override
- public boolean handleMotionEvent(MotionEvent event) {
- if ((event.getSource() & InputDevice.SOURCE_JOYSTICK) != 0) {
- int actionPointerIndex = event.getActionIndex();
- int action = event.getActionMasked();
- switch(action) {
- case MotionEvent.ACTION_MOVE:
- SDLJoystick joystick = getJoystick(event.getDeviceId());
- if ( joystick != null ) {
- for (int i = 0; i < joystick.axes.size(); i++) {
- InputDevice.MotionRange range = joystick.axes.get(i);
- /* Normalize the value to -1...1 */
- float value = ( event.getAxisValue( range.getAxis(), actionPointerIndex) - range.getMin() ) / range.getRange() * 2.0f - 1.0f;
- SDLActivity.onNativeJoy(joystick.device_id, i, value );
- }
- for (int i = 0; i < joystick.hats.size(); i+=2) {
- int hatX = Math.round(event.getAxisValue( joystick.hats.get(i).getAxis(), actionPointerIndex ) );
- int hatY = Math.round(event.getAxisValue( joystick.hats.get(i+1).getAxis(), actionPointerIndex ) );
- SDLActivity.onNativeHat(joystick.device_id, i/2, hatX, hatY );
- }
- }
- break;
- default:
- break;
- }
- }
- return true;
- }
-}
-
-class SDLGenericMotionListener_API12 implements View.OnGenericMotionListener {
- // Generic Motion (mouse hover, joystick...) events go here
- @Override
- public boolean onGenericMotion(View v, MotionEvent event) {
- float x, y;
- int action;
-
- switch ( event.getSource() ) {
- case InputDevice.SOURCE_JOYSTICK:
- case InputDevice.SOURCE_GAMEPAD:
- case InputDevice.SOURCE_DPAD:
- return SDLActivity.handleJoystickMotionEvent(event);
-
- case InputDevice.SOURCE_MOUSE:
- action = event.getActionMasked();
- switch (action) {
- case MotionEvent.ACTION_SCROLL:
- x = event.getAxisValue(MotionEvent.AXIS_HSCROLL, 0);
- y = event.getAxisValue(MotionEvent.AXIS_VSCROLL, 0);
- SDLActivity.onNativeMouse(0, action, x, y);
- return true;
-
- case MotionEvent.ACTION_HOVER_MOVE:
- x = event.getX(0);
- y = event.getY(0);
-
- SDLActivity.onNativeMouse(0, action, x, y);
- return true;
-
- default:
- break;
- }
- break;
-
- default:
- break;
- }
-
- // Event was not managed
- return false;
- }
-}
diff --git a/love/build.gradle b/love/build.gradle
new file mode 100644
index 00000000..6df3f799
--- /dev/null
+++ b/love/build.gradle
@@ -0,0 +1,53 @@
+apply plugin: 'com.android.library'
+
+android {
+ // If you want to use the debugger for JNI code, you want to compile this lib-project in Debug!
+ // And due to gradle limitations/bugs, the best way is to always compile it in debug.
+ // See https://code.google.com/p/android/issues/detail?id=52962
+ // and http://stackoverflow.com/questions/27277433/why-does-gradle-build-my-module-in-release-mode-when-the-app-is-in-debug
+ // defaultPublishConfig "debug"
+ compileSdkVersion 25
+ buildToolsVersion "25.0.2"
+
+ defaultConfig {
+ compileSdkVersion 25
+ buildToolsVersion "25.0.2"
+ minSdkVersion 10
+ externalNativeBuild {
+ ndkBuild {
+ arguments "-j2"
+ }
+ }
+ ndk {
+ // Specifies the ABI configurations of your native
+ // libraries Gradle should build and package with your APK.
+ abiFilters 'armeabi-v7a', 'armeabi'
+ }
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+ sourceSets {
+ main {
+ java {
+ srcDirs('src/main/java', 'src/jni/SDL2-2.0.5/android-project/src')
+ }
+ }
+ }
+ externalNativeBuild {
+ ndkBuild {
+ path "src/jni/Android.mk"
+ }
+ }
+ lintOptions {
+ abortOnError false
+ }
+}
+
+dependencies {
+ compile fileTree(dir: 'libs', include: ['*.jar'])
+ compile 'com.android.support:appcompat-v7:25.0.0'
+}
diff --git a/proguard-project.txt b/love/proguard-rules.pro
similarity index 62%
rename from proguard-project.txt
rename to love/proguard-rules.pro
index f2fe1559..515d61f6 100644
--- a/proguard-project.txt
+++ b/love/proguard-rules.pro
@@ -1,11 +1,8 @@
-# To enable ProGuard in your project, edit project.properties
-# to define the proguard.config property as described in that file.
-#
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
-# in ${sdk.dir}/tools/proguard/proguard-android.txt
-# You can edit the include path and order by changing the ProGuard
-# include property in project.properties.
+# in /Users/diglet/android-sdk-macosx/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the proguardFiles
+# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
diff --git a/love/src/jni/.gitignore b/love/src/jni/.gitignore
new file mode 100644
index 00000000..8080afe2
--- /dev/null
+++ b/love/src/jni/.gitignore
@@ -0,0 +1,18 @@
+!LuaJIT-2.1/android/armeabi/libluajit.a
+!LuaJIT-2.1/android/armeabi-v7a/libluajit.a
+!LuaJIT-2.1/android/x86/libluajit.a
+
+LuaJIT-2.1/src/host/buildvm
+LuaJIT-2.1/src/host/buildvm_arch.h
+LuaJIT-2.1/src/host/minilua
+LuaJIT-2.1/src/jit/vmdef.lua
+LuaJIT-2.1/src/libluajit.a
+LuaJIT-2.1/src/lj_bcdef.h
+LuaJIT-2.1/src/lj_ffdef.h
+LuaJIT-2.1/src/lj_folddef.h
+LuaJIT-2.1/src/lj_libdef.h
+LuaJIT-2.1/src/lj_recdef.h
+LuaJIT-2.1/src/lj_vm.s
+LuaJIT-2.1/src/luajit
+
+love/src/Makefile.am
diff --git a/jni/Android.mk b/love/src/jni/Android.mk
similarity index 100%
rename from jni/Android.mk
rename to love/src/jni/Android.mk
diff --git a/jni/Application.mk b/love/src/jni/Application.mk
similarity index 67%
rename from jni/Application.mk
rename to love/src/jni/Application.mk
index a1997c62..4b0278dd 100644
--- a/jni/Application.mk
+++ b/love/src/jni/Application.mk
@@ -8,4 +8,8 @@ APP_LDFLAGS := -llog -landroid -lz
APP_PLATFORM := 10
NDK_TOOLCHAIN_VERSION := 4.9
+# Fix for building on Windows
+# http://stackoverflow.com/questions/12598933/ndk-build-createprocess-make-e-87-the-parameter-is-incorrect
+APP_SHORT_COMMANDS := true
+
# APP_OPTIM := debug
diff --git a/jni/LuaJIT-2.1/Android.mk b/love/src/jni/LuaJIT-2.1/Android.mk
similarity index 100%
rename from jni/LuaJIT-2.1/Android.mk
rename to love/src/jni/LuaJIT-2.1/Android.mk
diff --git a/jni/LuaJIT-2.1/COPYRIGHT b/love/src/jni/LuaJIT-2.1/COPYRIGHT
similarity index 100%
rename from jni/LuaJIT-2.1/COPYRIGHT
rename to love/src/jni/LuaJIT-2.1/COPYRIGHT
diff --git a/jni/LuaJIT-2.1/Makefile b/love/src/jni/LuaJIT-2.1/Makefile
similarity index 100%
rename from jni/LuaJIT-2.1/Makefile
rename to love/src/jni/LuaJIT-2.1/Makefile
diff --git a/jni/LuaJIT-2.1/README b/love/src/jni/LuaJIT-2.1/README
similarity index 100%
rename from jni/LuaJIT-2.1/README
rename to love/src/jni/LuaJIT-2.1/README
diff --git a/jni/LuaJIT-2.1/android/armeabi-v7a/libluajit.a b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/libluajit.a
similarity index 100%
rename from jni/LuaJIT-2.1/android/armeabi-v7a/libluajit.a
rename to love/src/jni/LuaJIT-2.1/android/armeabi-v7a/libluajit.a
diff --git a/jni/LuaJIT-2.1/android/armeabi/libluajit.a b/love/src/jni/LuaJIT-2.1/android/armeabi/libluajit.a
similarity index 100%
rename from jni/LuaJIT-2.1/android/armeabi/libluajit.a
rename to love/src/jni/LuaJIT-2.1/android/armeabi/libluajit.a
diff --git a/jni/LuaJIT-2.1/android/x86/libluajit.a b/love/src/jni/LuaJIT-2.1/android/x86/libluajit.a
similarity index 100%
rename from jni/LuaJIT-2.1/android/x86/libluajit.a
rename to love/src/jni/LuaJIT-2.1/android/x86/libluajit.a
diff --git a/jni/LuaJIT-2.1/buildandroid.sh b/love/src/jni/LuaJIT-2.1/buildandroid.sh
similarity index 100%
rename from jni/LuaJIT-2.1/buildandroid.sh
rename to love/src/jni/LuaJIT-2.1/buildandroid.sh
diff --git a/jni/LuaJIT-2.1/doc/bluequad-print.css b/love/src/jni/LuaJIT-2.1/doc/bluequad-print.css
similarity index 100%
rename from jni/LuaJIT-2.1/doc/bluequad-print.css
rename to love/src/jni/LuaJIT-2.1/doc/bluequad-print.css
diff --git a/jni/LuaJIT-2.1/doc/bluequad.css b/love/src/jni/LuaJIT-2.1/doc/bluequad.css
similarity index 100%
rename from jni/LuaJIT-2.1/doc/bluequad.css
rename to love/src/jni/LuaJIT-2.1/doc/bluequad.css
diff --git a/jni/LuaJIT-2.1/doc/changes.html b/love/src/jni/LuaJIT-2.1/doc/changes.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/changes.html
rename to love/src/jni/LuaJIT-2.1/doc/changes.html
diff --git a/jni/LuaJIT-2.1/doc/contact.html b/love/src/jni/LuaJIT-2.1/doc/contact.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/contact.html
rename to love/src/jni/LuaJIT-2.1/doc/contact.html
diff --git a/jni/LuaJIT-2.1/doc/ext_c_api.html b/love/src/jni/LuaJIT-2.1/doc/ext_c_api.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/ext_c_api.html
rename to love/src/jni/LuaJIT-2.1/doc/ext_c_api.html
diff --git a/jni/LuaJIT-2.1/doc/ext_ffi.html b/love/src/jni/LuaJIT-2.1/doc/ext_ffi.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/ext_ffi.html
rename to love/src/jni/LuaJIT-2.1/doc/ext_ffi.html
diff --git a/jni/LuaJIT-2.1/doc/ext_ffi_api.html b/love/src/jni/LuaJIT-2.1/doc/ext_ffi_api.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/ext_ffi_api.html
rename to love/src/jni/LuaJIT-2.1/doc/ext_ffi_api.html
diff --git a/jni/LuaJIT-2.1/doc/ext_ffi_semantics.html b/love/src/jni/LuaJIT-2.1/doc/ext_ffi_semantics.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/ext_ffi_semantics.html
rename to love/src/jni/LuaJIT-2.1/doc/ext_ffi_semantics.html
diff --git a/jni/LuaJIT-2.1/doc/ext_ffi_tutorial.html b/love/src/jni/LuaJIT-2.1/doc/ext_ffi_tutorial.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/ext_ffi_tutorial.html
rename to love/src/jni/LuaJIT-2.1/doc/ext_ffi_tutorial.html
diff --git a/jni/LuaJIT-2.1/doc/ext_jit.html b/love/src/jni/LuaJIT-2.1/doc/ext_jit.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/ext_jit.html
rename to love/src/jni/LuaJIT-2.1/doc/ext_jit.html
diff --git a/jni/LuaJIT-2.1/doc/ext_profiler.html b/love/src/jni/LuaJIT-2.1/doc/ext_profiler.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/ext_profiler.html
rename to love/src/jni/LuaJIT-2.1/doc/ext_profiler.html
diff --git a/jni/LuaJIT-2.1/doc/extensions.html b/love/src/jni/LuaJIT-2.1/doc/extensions.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/extensions.html
rename to love/src/jni/LuaJIT-2.1/doc/extensions.html
diff --git a/jni/LuaJIT-2.1/doc/faq.html b/love/src/jni/LuaJIT-2.1/doc/faq.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/faq.html
rename to love/src/jni/LuaJIT-2.1/doc/faq.html
diff --git a/jni/LuaJIT-2.1/doc/img/contact.png b/love/src/jni/LuaJIT-2.1/doc/img/contact.png
similarity index 100%
rename from jni/LuaJIT-2.1/doc/img/contact.png
rename to love/src/jni/LuaJIT-2.1/doc/img/contact.png
diff --git a/jni/LuaJIT-2.1/doc/install.html b/love/src/jni/LuaJIT-2.1/doc/install.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/install.html
rename to love/src/jni/LuaJIT-2.1/doc/install.html
diff --git a/jni/LuaJIT-2.1/doc/luajit.html b/love/src/jni/LuaJIT-2.1/doc/luajit.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/luajit.html
rename to love/src/jni/LuaJIT-2.1/doc/luajit.html
diff --git a/jni/LuaJIT-2.1/doc/running.html b/love/src/jni/LuaJIT-2.1/doc/running.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/running.html
rename to love/src/jni/LuaJIT-2.1/doc/running.html
diff --git a/jni/LuaJIT-2.1/doc/status.html b/love/src/jni/LuaJIT-2.1/doc/status.html
similarity index 100%
rename from jni/LuaJIT-2.1/doc/status.html
rename to love/src/jni/LuaJIT-2.1/doc/status.html
diff --git a/jni/LuaJIT-2.1/dynasm/dasm_arm.h b/love/src/jni/LuaJIT-2.1/dynasm/dasm_arm.h
similarity index 100%
rename from jni/LuaJIT-2.1/dynasm/dasm_arm.h
rename to love/src/jni/LuaJIT-2.1/dynasm/dasm_arm.h
diff --git a/jni/LuaJIT-2.1/dynasm/dasm_arm.lua b/love/src/jni/LuaJIT-2.1/dynasm/dasm_arm.lua
similarity index 100%
rename from jni/LuaJIT-2.1/dynasm/dasm_arm.lua
rename to love/src/jni/LuaJIT-2.1/dynasm/dasm_arm.lua
diff --git a/jni/LuaJIT-2.1/dynasm/dasm_arm64.h b/love/src/jni/LuaJIT-2.1/dynasm/dasm_arm64.h
similarity index 100%
rename from jni/LuaJIT-2.1/dynasm/dasm_arm64.h
rename to love/src/jni/LuaJIT-2.1/dynasm/dasm_arm64.h
diff --git a/jni/LuaJIT-2.1/dynasm/dasm_arm64.lua b/love/src/jni/LuaJIT-2.1/dynasm/dasm_arm64.lua
similarity index 100%
rename from jni/LuaJIT-2.1/dynasm/dasm_arm64.lua
rename to love/src/jni/LuaJIT-2.1/dynasm/dasm_arm64.lua
diff --git a/jni/LuaJIT-2.1/dynasm/dasm_mips.h b/love/src/jni/LuaJIT-2.1/dynasm/dasm_mips.h
similarity index 100%
rename from jni/LuaJIT-2.1/dynasm/dasm_mips.h
rename to love/src/jni/LuaJIT-2.1/dynasm/dasm_mips.h
diff --git a/jni/LuaJIT-2.1/dynasm/dasm_mips.lua b/love/src/jni/LuaJIT-2.1/dynasm/dasm_mips.lua
similarity index 100%
rename from jni/LuaJIT-2.1/dynasm/dasm_mips.lua
rename to love/src/jni/LuaJIT-2.1/dynasm/dasm_mips.lua
diff --git a/jni/LuaJIT-2.1/dynasm/dasm_ppc.h b/love/src/jni/LuaJIT-2.1/dynasm/dasm_ppc.h
similarity index 100%
rename from jni/LuaJIT-2.1/dynasm/dasm_ppc.h
rename to love/src/jni/LuaJIT-2.1/dynasm/dasm_ppc.h
diff --git a/jni/LuaJIT-2.1/dynasm/dasm_ppc.lua b/love/src/jni/LuaJIT-2.1/dynasm/dasm_ppc.lua
similarity index 100%
rename from jni/LuaJIT-2.1/dynasm/dasm_ppc.lua
rename to love/src/jni/LuaJIT-2.1/dynasm/dasm_ppc.lua
diff --git a/jni/LuaJIT-2.1/dynasm/dasm_proto.h b/love/src/jni/LuaJIT-2.1/dynasm/dasm_proto.h
similarity index 100%
rename from jni/LuaJIT-2.1/dynasm/dasm_proto.h
rename to love/src/jni/LuaJIT-2.1/dynasm/dasm_proto.h
diff --git a/jni/LuaJIT-2.1/dynasm/dasm_x64.lua b/love/src/jni/LuaJIT-2.1/dynasm/dasm_x64.lua
similarity index 100%
rename from jni/LuaJIT-2.1/dynasm/dasm_x64.lua
rename to love/src/jni/LuaJIT-2.1/dynasm/dasm_x64.lua
diff --git a/jni/LuaJIT-2.1/dynasm/dasm_x86.h b/love/src/jni/LuaJIT-2.1/dynasm/dasm_x86.h
similarity index 100%
rename from jni/LuaJIT-2.1/dynasm/dasm_x86.h
rename to love/src/jni/LuaJIT-2.1/dynasm/dasm_x86.h
diff --git a/jni/LuaJIT-2.1/dynasm/dasm_x86.lua b/love/src/jni/LuaJIT-2.1/dynasm/dasm_x86.lua
similarity index 100%
rename from jni/LuaJIT-2.1/dynasm/dasm_x86.lua
rename to love/src/jni/LuaJIT-2.1/dynasm/dasm_x86.lua
diff --git a/jni/LuaJIT-2.1/dynasm/dynasm.lua b/love/src/jni/LuaJIT-2.1/dynasm/dynasm.lua
similarity index 100%
rename from jni/LuaJIT-2.1/dynasm/dynasm.lua
rename to love/src/jni/LuaJIT-2.1/dynasm/dynasm.lua
diff --git a/jni/LuaJIT-2.1/etc/luajit.1 b/love/src/jni/LuaJIT-2.1/etc/luajit.1
similarity index 100%
rename from jni/LuaJIT-2.1/etc/luajit.1
rename to love/src/jni/LuaJIT-2.1/etc/luajit.1
diff --git a/jni/LuaJIT-2.1/etc/luajit.pc b/love/src/jni/LuaJIT-2.1/etc/luajit.pc
similarity index 100%
rename from jni/LuaJIT-2.1/etc/luajit.pc
rename to love/src/jni/LuaJIT-2.1/etc/luajit.pc
diff --git a/jni/LuaJIT-2.1/src/.gitignore b/love/src/jni/LuaJIT-2.1/src/.gitignore
similarity index 100%
rename from jni/LuaJIT-2.1/src/.gitignore
rename to love/src/jni/LuaJIT-2.1/src/.gitignore
diff --git a/jni/LuaJIT-2.1/src/Makefile b/love/src/jni/LuaJIT-2.1/src/Makefile
similarity index 100%
rename from jni/LuaJIT-2.1/src/Makefile
rename to love/src/jni/LuaJIT-2.1/src/Makefile
diff --git a/jni/LuaJIT-2.1/src/Makefile.dep b/love/src/jni/LuaJIT-2.1/src/Makefile.dep
similarity index 100%
rename from jni/LuaJIT-2.1/src/Makefile.dep
rename to love/src/jni/LuaJIT-2.1/src/Makefile.dep
diff --git a/jni/LuaJIT-2.1/src/host/.gitignore b/love/src/jni/LuaJIT-2.1/src/host/.gitignore
similarity index 100%
rename from jni/LuaJIT-2.1/src/host/.gitignore
rename to love/src/jni/LuaJIT-2.1/src/host/.gitignore
diff --git a/jni/LuaJIT-2.1/src/host/README b/love/src/jni/LuaJIT-2.1/src/host/README
similarity index 100%
rename from jni/LuaJIT-2.1/src/host/README
rename to love/src/jni/LuaJIT-2.1/src/host/README
diff --git a/jni/LuaJIT-2.1/src/host/buildvm.c b/love/src/jni/LuaJIT-2.1/src/host/buildvm.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/host/buildvm.c
rename to love/src/jni/LuaJIT-2.1/src/host/buildvm.c
diff --git a/jni/LuaJIT-2.1/src/host/buildvm.h b/love/src/jni/LuaJIT-2.1/src/host/buildvm.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/host/buildvm.h
rename to love/src/jni/LuaJIT-2.1/src/host/buildvm.h
diff --git a/jni/LuaJIT-2.1/src/host/buildvm_asm.c b/love/src/jni/LuaJIT-2.1/src/host/buildvm_asm.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/host/buildvm_asm.c
rename to love/src/jni/LuaJIT-2.1/src/host/buildvm_asm.c
diff --git a/jni/LuaJIT-2.1/src/host/buildvm_fold.c b/love/src/jni/LuaJIT-2.1/src/host/buildvm_fold.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/host/buildvm_fold.c
rename to love/src/jni/LuaJIT-2.1/src/host/buildvm_fold.c
diff --git a/jni/LuaJIT-2.1/src/host/buildvm_lib.c b/love/src/jni/LuaJIT-2.1/src/host/buildvm_lib.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/host/buildvm_lib.c
rename to love/src/jni/LuaJIT-2.1/src/host/buildvm_lib.c
diff --git a/jni/LuaJIT-2.1/src/host/buildvm_libbc.h b/love/src/jni/LuaJIT-2.1/src/host/buildvm_libbc.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/host/buildvm_libbc.h
rename to love/src/jni/LuaJIT-2.1/src/host/buildvm_libbc.h
diff --git a/jni/LuaJIT-2.1/src/host/buildvm_peobj.c b/love/src/jni/LuaJIT-2.1/src/host/buildvm_peobj.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/host/buildvm_peobj.c
rename to love/src/jni/LuaJIT-2.1/src/host/buildvm_peobj.c
diff --git a/jni/LuaJIT-2.1/src/host/genlibbc.lua b/love/src/jni/LuaJIT-2.1/src/host/genlibbc.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/host/genlibbc.lua
rename to love/src/jni/LuaJIT-2.1/src/host/genlibbc.lua
diff --git a/jni/LuaJIT-2.1/src/host/genminilua.lua b/love/src/jni/LuaJIT-2.1/src/host/genminilua.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/host/genminilua.lua
rename to love/src/jni/LuaJIT-2.1/src/host/genminilua.lua
diff --git a/jni/LuaJIT-2.1/src/host/minilua.c b/love/src/jni/LuaJIT-2.1/src/host/minilua.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/host/minilua.c
rename to love/src/jni/LuaJIT-2.1/src/host/minilua.c
diff --git a/jni/LuaJIT-2.1/src/jit/.gitignore b/love/src/jni/LuaJIT-2.1/src/jit/.gitignore
similarity index 100%
rename from jni/LuaJIT-2.1/src/jit/.gitignore
rename to love/src/jni/LuaJIT-2.1/src/jit/.gitignore
diff --git a/jni/LuaJIT-2.1/src/jit/bc.lua b/love/src/jni/LuaJIT-2.1/src/jit/bc.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/jit/bc.lua
rename to love/src/jni/LuaJIT-2.1/src/jit/bc.lua
diff --git a/jni/LuaJIT-2.1/src/jit/bcsave.lua b/love/src/jni/LuaJIT-2.1/src/jit/bcsave.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/jit/bcsave.lua
rename to love/src/jni/LuaJIT-2.1/src/jit/bcsave.lua
diff --git a/jni/LuaJIT-2.1/src/jit/dis_arm.lua b/love/src/jni/LuaJIT-2.1/src/jit/dis_arm.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/jit/dis_arm.lua
rename to love/src/jni/LuaJIT-2.1/src/jit/dis_arm.lua
diff --git a/jni/LuaJIT-2.1/src/jit/dis_mips.lua b/love/src/jni/LuaJIT-2.1/src/jit/dis_mips.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/jit/dis_mips.lua
rename to love/src/jni/LuaJIT-2.1/src/jit/dis_mips.lua
diff --git a/jni/LuaJIT-2.1/src/jit/dis_mipsel.lua b/love/src/jni/LuaJIT-2.1/src/jit/dis_mipsel.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/jit/dis_mipsel.lua
rename to love/src/jni/LuaJIT-2.1/src/jit/dis_mipsel.lua
diff --git a/jni/LuaJIT-2.1/src/jit/dis_ppc.lua b/love/src/jni/LuaJIT-2.1/src/jit/dis_ppc.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/jit/dis_ppc.lua
rename to love/src/jni/LuaJIT-2.1/src/jit/dis_ppc.lua
diff --git a/jni/LuaJIT-2.1/src/jit/dis_x64.lua b/love/src/jni/LuaJIT-2.1/src/jit/dis_x64.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/jit/dis_x64.lua
rename to love/src/jni/LuaJIT-2.1/src/jit/dis_x64.lua
diff --git a/jni/LuaJIT-2.1/src/jit/dis_x86.lua b/love/src/jni/LuaJIT-2.1/src/jit/dis_x86.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/jit/dis_x86.lua
rename to love/src/jni/LuaJIT-2.1/src/jit/dis_x86.lua
diff --git a/jni/LuaJIT-2.1/src/jit/dump.lua b/love/src/jni/LuaJIT-2.1/src/jit/dump.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/jit/dump.lua
rename to love/src/jni/LuaJIT-2.1/src/jit/dump.lua
diff --git a/jni/LuaJIT-2.1/src/jit/p.lua b/love/src/jni/LuaJIT-2.1/src/jit/p.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/jit/p.lua
rename to love/src/jni/LuaJIT-2.1/src/jit/p.lua
diff --git a/jni/LuaJIT-2.1/src/jit/v.lua b/love/src/jni/LuaJIT-2.1/src/jit/v.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/jit/v.lua
rename to love/src/jni/LuaJIT-2.1/src/jit/v.lua
diff --git a/jni/LuaJIT-2.1/src/jit/zone.lua b/love/src/jni/LuaJIT-2.1/src/jit/zone.lua
similarity index 100%
rename from jni/LuaJIT-2.1/src/jit/zone.lua
rename to love/src/jni/LuaJIT-2.1/src/jit/zone.lua
diff --git a/jni/LuaJIT-2.1/src/lauxlib.h b/love/src/jni/LuaJIT-2.1/src/lauxlib.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lauxlib.h
rename to love/src/jni/LuaJIT-2.1/src/lauxlib.h
diff --git a/jni/LuaJIT-2.1/src/lib_aux.c b/love/src/jni/LuaJIT-2.1/src/lib_aux.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lib_aux.c
rename to love/src/jni/LuaJIT-2.1/src/lib_aux.c
diff --git a/jni/LuaJIT-2.1/src/lib_base.c b/love/src/jni/LuaJIT-2.1/src/lib_base.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lib_base.c
rename to love/src/jni/LuaJIT-2.1/src/lib_base.c
diff --git a/jni/LuaJIT-2.1/src/lib_bit.c b/love/src/jni/LuaJIT-2.1/src/lib_bit.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lib_bit.c
rename to love/src/jni/LuaJIT-2.1/src/lib_bit.c
diff --git a/jni/LuaJIT-2.1/src/lib_debug.c b/love/src/jni/LuaJIT-2.1/src/lib_debug.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lib_debug.c
rename to love/src/jni/LuaJIT-2.1/src/lib_debug.c
diff --git a/jni/LuaJIT-2.1/src/lib_ffi.c b/love/src/jni/LuaJIT-2.1/src/lib_ffi.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lib_ffi.c
rename to love/src/jni/LuaJIT-2.1/src/lib_ffi.c
diff --git a/jni/LuaJIT-2.1/src/lib_init.c b/love/src/jni/LuaJIT-2.1/src/lib_init.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lib_init.c
rename to love/src/jni/LuaJIT-2.1/src/lib_init.c
diff --git a/jni/LuaJIT-2.1/src/lib_io.c b/love/src/jni/LuaJIT-2.1/src/lib_io.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lib_io.c
rename to love/src/jni/LuaJIT-2.1/src/lib_io.c
diff --git a/jni/LuaJIT-2.1/src/lib_jit.c b/love/src/jni/LuaJIT-2.1/src/lib_jit.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lib_jit.c
rename to love/src/jni/LuaJIT-2.1/src/lib_jit.c
diff --git a/jni/LuaJIT-2.1/src/lib_math.c b/love/src/jni/LuaJIT-2.1/src/lib_math.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lib_math.c
rename to love/src/jni/LuaJIT-2.1/src/lib_math.c
diff --git a/jni/LuaJIT-2.1/src/lib_os.c b/love/src/jni/LuaJIT-2.1/src/lib_os.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lib_os.c
rename to love/src/jni/LuaJIT-2.1/src/lib_os.c
diff --git a/jni/LuaJIT-2.1/src/lib_package.c b/love/src/jni/LuaJIT-2.1/src/lib_package.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lib_package.c
rename to love/src/jni/LuaJIT-2.1/src/lib_package.c
diff --git a/jni/LuaJIT-2.1/src/lib_string.c b/love/src/jni/LuaJIT-2.1/src/lib_string.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lib_string.c
rename to love/src/jni/LuaJIT-2.1/src/lib_string.c
diff --git a/jni/LuaJIT-2.1/src/lib_table.c b/love/src/jni/LuaJIT-2.1/src/lib_table.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lib_table.c
rename to love/src/jni/LuaJIT-2.1/src/lib_table.c
diff --git a/jni/LuaJIT-2.1/src/lj.supp b/love/src/jni/LuaJIT-2.1/src/lj.supp
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj.supp
rename to love/src/jni/LuaJIT-2.1/src/lj.supp
diff --git a/jni/LuaJIT-2.1/src/lj_alloc.c b/love/src/jni/LuaJIT-2.1/src/lj_alloc.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_alloc.c
rename to love/src/jni/LuaJIT-2.1/src/lj_alloc.c
diff --git a/jni/LuaJIT-2.1/src/lj_alloc.h b/love/src/jni/LuaJIT-2.1/src/lj_alloc.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_alloc.h
rename to love/src/jni/LuaJIT-2.1/src/lj_alloc.h
diff --git a/jni/LuaJIT-2.1/src/lj_api.c b/love/src/jni/LuaJIT-2.1/src/lj_api.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_api.c
rename to love/src/jni/LuaJIT-2.1/src/lj_api.c
diff --git a/jni/LuaJIT-2.1/src/lj_arch.h b/love/src/jni/LuaJIT-2.1/src/lj_arch.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_arch.h
rename to love/src/jni/LuaJIT-2.1/src/lj_arch.h
diff --git a/jni/LuaJIT-2.1/src/lj_asm.c b/love/src/jni/LuaJIT-2.1/src/lj_asm.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_asm.c
rename to love/src/jni/LuaJIT-2.1/src/lj_asm.c
diff --git a/jni/LuaJIT-2.1/src/lj_asm.h b/love/src/jni/LuaJIT-2.1/src/lj_asm.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_asm.h
rename to love/src/jni/LuaJIT-2.1/src/lj_asm.h
diff --git a/jni/LuaJIT-2.1/src/lj_asm_arm.h b/love/src/jni/LuaJIT-2.1/src/lj_asm_arm.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_asm_arm.h
rename to love/src/jni/LuaJIT-2.1/src/lj_asm_arm.h
diff --git a/jni/LuaJIT-2.1/src/lj_asm_mips.h b/love/src/jni/LuaJIT-2.1/src/lj_asm_mips.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_asm_mips.h
rename to love/src/jni/LuaJIT-2.1/src/lj_asm_mips.h
diff --git a/jni/LuaJIT-2.1/src/lj_asm_ppc.h b/love/src/jni/LuaJIT-2.1/src/lj_asm_ppc.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_asm_ppc.h
rename to love/src/jni/LuaJIT-2.1/src/lj_asm_ppc.h
diff --git a/jni/LuaJIT-2.1/src/lj_asm_x86.h b/love/src/jni/LuaJIT-2.1/src/lj_asm_x86.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_asm_x86.h
rename to love/src/jni/LuaJIT-2.1/src/lj_asm_x86.h
diff --git a/jni/LuaJIT-2.1/src/lj_bc.c b/love/src/jni/LuaJIT-2.1/src/lj_bc.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_bc.c
rename to love/src/jni/LuaJIT-2.1/src/lj_bc.c
diff --git a/jni/LuaJIT-2.1/src/lj_bc.h b/love/src/jni/LuaJIT-2.1/src/lj_bc.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_bc.h
rename to love/src/jni/LuaJIT-2.1/src/lj_bc.h
diff --git a/jni/LuaJIT-2.1/src/lj_bcdump.h b/love/src/jni/LuaJIT-2.1/src/lj_bcdump.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_bcdump.h
rename to love/src/jni/LuaJIT-2.1/src/lj_bcdump.h
diff --git a/jni/LuaJIT-2.1/src/lj_bcread.c b/love/src/jni/LuaJIT-2.1/src/lj_bcread.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_bcread.c
rename to love/src/jni/LuaJIT-2.1/src/lj_bcread.c
diff --git a/jni/LuaJIT-2.1/src/lj_bcwrite.c b/love/src/jni/LuaJIT-2.1/src/lj_bcwrite.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_bcwrite.c
rename to love/src/jni/LuaJIT-2.1/src/lj_bcwrite.c
diff --git a/jni/LuaJIT-2.1/src/lj_buf.c b/love/src/jni/LuaJIT-2.1/src/lj_buf.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_buf.c
rename to love/src/jni/LuaJIT-2.1/src/lj_buf.c
diff --git a/jni/LuaJIT-2.1/src/lj_buf.h b/love/src/jni/LuaJIT-2.1/src/lj_buf.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_buf.h
rename to love/src/jni/LuaJIT-2.1/src/lj_buf.h
diff --git a/jni/LuaJIT-2.1/src/lj_carith.c b/love/src/jni/LuaJIT-2.1/src/lj_carith.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_carith.c
rename to love/src/jni/LuaJIT-2.1/src/lj_carith.c
diff --git a/jni/LuaJIT-2.1/src/lj_carith.h b/love/src/jni/LuaJIT-2.1/src/lj_carith.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_carith.h
rename to love/src/jni/LuaJIT-2.1/src/lj_carith.h
diff --git a/jni/LuaJIT-2.1/src/lj_ccall.c b/love/src/jni/LuaJIT-2.1/src/lj_ccall.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_ccall.c
rename to love/src/jni/LuaJIT-2.1/src/lj_ccall.c
diff --git a/jni/LuaJIT-2.1/src/lj_ccall.h b/love/src/jni/LuaJIT-2.1/src/lj_ccall.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_ccall.h
rename to love/src/jni/LuaJIT-2.1/src/lj_ccall.h
diff --git a/jni/LuaJIT-2.1/src/lj_ccallback.c b/love/src/jni/LuaJIT-2.1/src/lj_ccallback.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_ccallback.c
rename to love/src/jni/LuaJIT-2.1/src/lj_ccallback.c
diff --git a/jni/LuaJIT-2.1/src/lj_ccallback.h b/love/src/jni/LuaJIT-2.1/src/lj_ccallback.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_ccallback.h
rename to love/src/jni/LuaJIT-2.1/src/lj_ccallback.h
diff --git a/jni/LuaJIT-2.1/src/lj_cconv.c b/love/src/jni/LuaJIT-2.1/src/lj_cconv.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_cconv.c
rename to love/src/jni/LuaJIT-2.1/src/lj_cconv.c
diff --git a/jni/LuaJIT-2.1/src/lj_cconv.h b/love/src/jni/LuaJIT-2.1/src/lj_cconv.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_cconv.h
rename to love/src/jni/LuaJIT-2.1/src/lj_cconv.h
diff --git a/jni/LuaJIT-2.1/src/lj_cdata.c b/love/src/jni/LuaJIT-2.1/src/lj_cdata.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_cdata.c
rename to love/src/jni/LuaJIT-2.1/src/lj_cdata.c
diff --git a/jni/LuaJIT-2.1/src/lj_cdata.h b/love/src/jni/LuaJIT-2.1/src/lj_cdata.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_cdata.h
rename to love/src/jni/LuaJIT-2.1/src/lj_cdata.h
diff --git a/jni/LuaJIT-2.1/src/lj_char.c b/love/src/jni/LuaJIT-2.1/src/lj_char.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_char.c
rename to love/src/jni/LuaJIT-2.1/src/lj_char.c
diff --git a/jni/LuaJIT-2.1/src/lj_char.h b/love/src/jni/LuaJIT-2.1/src/lj_char.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_char.h
rename to love/src/jni/LuaJIT-2.1/src/lj_char.h
diff --git a/jni/LuaJIT-2.1/src/lj_clib.c b/love/src/jni/LuaJIT-2.1/src/lj_clib.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_clib.c
rename to love/src/jni/LuaJIT-2.1/src/lj_clib.c
diff --git a/jni/LuaJIT-2.1/src/lj_clib.h b/love/src/jni/LuaJIT-2.1/src/lj_clib.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_clib.h
rename to love/src/jni/LuaJIT-2.1/src/lj_clib.h
diff --git a/jni/LuaJIT-2.1/src/lj_cparse.c b/love/src/jni/LuaJIT-2.1/src/lj_cparse.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_cparse.c
rename to love/src/jni/LuaJIT-2.1/src/lj_cparse.c
diff --git a/jni/LuaJIT-2.1/src/lj_cparse.h b/love/src/jni/LuaJIT-2.1/src/lj_cparse.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_cparse.h
rename to love/src/jni/LuaJIT-2.1/src/lj_cparse.h
diff --git a/jni/LuaJIT-2.1/src/lj_crecord.c b/love/src/jni/LuaJIT-2.1/src/lj_crecord.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_crecord.c
rename to love/src/jni/LuaJIT-2.1/src/lj_crecord.c
diff --git a/jni/LuaJIT-2.1/src/lj_crecord.h b/love/src/jni/LuaJIT-2.1/src/lj_crecord.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_crecord.h
rename to love/src/jni/LuaJIT-2.1/src/lj_crecord.h
diff --git a/jni/LuaJIT-2.1/src/lj_ctype.c b/love/src/jni/LuaJIT-2.1/src/lj_ctype.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_ctype.c
rename to love/src/jni/LuaJIT-2.1/src/lj_ctype.c
diff --git a/jni/LuaJIT-2.1/src/lj_ctype.h b/love/src/jni/LuaJIT-2.1/src/lj_ctype.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_ctype.h
rename to love/src/jni/LuaJIT-2.1/src/lj_ctype.h
diff --git a/jni/LuaJIT-2.1/src/lj_debug.c b/love/src/jni/LuaJIT-2.1/src/lj_debug.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_debug.c
rename to love/src/jni/LuaJIT-2.1/src/lj_debug.c
diff --git a/jni/LuaJIT-2.1/src/lj_debug.h b/love/src/jni/LuaJIT-2.1/src/lj_debug.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_debug.h
rename to love/src/jni/LuaJIT-2.1/src/lj_debug.h
diff --git a/jni/LuaJIT-2.1/src/lj_def.h b/love/src/jni/LuaJIT-2.1/src/lj_def.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_def.h
rename to love/src/jni/LuaJIT-2.1/src/lj_def.h
diff --git a/jni/LuaJIT-2.1/src/lj_dispatch.c b/love/src/jni/LuaJIT-2.1/src/lj_dispatch.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_dispatch.c
rename to love/src/jni/LuaJIT-2.1/src/lj_dispatch.c
diff --git a/jni/LuaJIT-2.1/src/lj_dispatch.h b/love/src/jni/LuaJIT-2.1/src/lj_dispatch.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_dispatch.h
rename to love/src/jni/LuaJIT-2.1/src/lj_dispatch.h
diff --git a/jni/LuaJIT-2.1/src/lj_emit_arm.h b/love/src/jni/LuaJIT-2.1/src/lj_emit_arm.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_emit_arm.h
rename to love/src/jni/LuaJIT-2.1/src/lj_emit_arm.h
diff --git a/jni/LuaJIT-2.1/src/lj_emit_mips.h b/love/src/jni/LuaJIT-2.1/src/lj_emit_mips.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_emit_mips.h
rename to love/src/jni/LuaJIT-2.1/src/lj_emit_mips.h
diff --git a/jni/LuaJIT-2.1/src/lj_emit_ppc.h b/love/src/jni/LuaJIT-2.1/src/lj_emit_ppc.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_emit_ppc.h
rename to love/src/jni/LuaJIT-2.1/src/lj_emit_ppc.h
diff --git a/jni/LuaJIT-2.1/src/lj_emit_x86.h b/love/src/jni/LuaJIT-2.1/src/lj_emit_x86.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_emit_x86.h
rename to love/src/jni/LuaJIT-2.1/src/lj_emit_x86.h
diff --git a/jni/LuaJIT-2.1/src/lj_err.c b/love/src/jni/LuaJIT-2.1/src/lj_err.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_err.c
rename to love/src/jni/LuaJIT-2.1/src/lj_err.c
diff --git a/jni/LuaJIT-2.1/src/lj_err.h b/love/src/jni/LuaJIT-2.1/src/lj_err.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_err.h
rename to love/src/jni/LuaJIT-2.1/src/lj_err.h
diff --git a/jni/LuaJIT-2.1/src/lj_errmsg.h b/love/src/jni/LuaJIT-2.1/src/lj_errmsg.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_errmsg.h
rename to love/src/jni/LuaJIT-2.1/src/lj_errmsg.h
diff --git a/jni/LuaJIT-2.1/src/lj_ff.h b/love/src/jni/LuaJIT-2.1/src/lj_ff.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_ff.h
rename to love/src/jni/LuaJIT-2.1/src/lj_ff.h
diff --git a/jni/LuaJIT-2.1/src/lj_ffrecord.c b/love/src/jni/LuaJIT-2.1/src/lj_ffrecord.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_ffrecord.c
rename to love/src/jni/LuaJIT-2.1/src/lj_ffrecord.c
diff --git a/jni/LuaJIT-2.1/src/lj_ffrecord.h b/love/src/jni/LuaJIT-2.1/src/lj_ffrecord.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_ffrecord.h
rename to love/src/jni/LuaJIT-2.1/src/lj_ffrecord.h
diff --git a/jni/LuaJIT-2.1/src/lj_frame.h b/love/src/jni/LuaJIT-2.1/src/lj_frame.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_frame.h
rename to love/src/jni/LuaJIT-2.1/src/lj_frame.h
diff --git a/jni/LuaJIT-2.1/src/lj_func.c b/love/src/jni/LuaJIT-2.1/src/lj_func.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_func.c
rename to love/src/jni/LuaJIT-2.1/src/lj_func.c
diff --git a/jni/LuaJIT-2.1/src/lj_func.h b/love/src/jni/LuaJIT-2.1/src/lj_func.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_func.h
rename to love/src/jni/LuaJIT-2.1/src/lj_func.h
diff --git a/jni/LuaJIT-2.1/src/lj_gc.c b/love/src/jni/LuaJIT-2.1/src/lj_gc.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_gc.c
rename to love/src/jni/LuaJIT-2.1/src/lj_gc.c
diff --git a/jni/LuaJIT-2.1/src/lj_gc.h b/love/src/jni/LuaJIT-2.1/src/lj_gc.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_gc.h
rename to love/src/jni/LuaJIT-2.1/src/lj_gc.h
diff --git a/jni/LuaJIT-2.1/src/lj_gdbjit.c b/love/src/jni/LuaJIT-2.1/src/lj_gdbjit.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_gdbjit.c
rename to love/src/jni/LuaJIT-2.1/src/lj_gdbjit.c
diff --git a/jni/LuaJIT-2.1/src/lj_gdbjit.h b/love/src/jni/LuaJIT-2.1/src/lj_gdbjit.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_gdbjit.h
rename to love/src/jni/LuaJIT-2.1/src/lj_gdbjit.h
diff --git a/jni/LuaJIT-2.1/src/lj_ir.c b/love/src/jni/LuaJIT-2.1/src/lj_ir.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_ir.c
rename to love/src/jni/LuaJIT-2.1/src/lj_ir.c
diff --git a/jni/LuaJIT-2.1/src/lj_ir.h b/love/src/jni/LuaJIT-2.1/src/lj_ir.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_ir.h
rename to love/src/jni/LuaJIT-2.1/src/lj_ir.h
diff --git a/jni/LuaJIT-2.1/src/lj_ircall.h b/love/src/jni/LuaJIT-2.1/src/lj_ircall.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_ircall.h
rename to love/src/jni/LuaJIT-2.1/src/lj_ircall.h
diff --git a/jni/LuaJIT-2.1/src/lj_iropt.h b/love/src/jni/LuaJIT-2.1/src/lj_iropt.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_iropt.h
rename to love/src/jni/LuaJIT-2.1/src/lj_iropt.h
diff --git a/jni/LuaJIT-2.1/src/lj_jit.h b/love/src/jni/LuaJIT-2.1/src/lj_jit.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_jit.h
rename to love/src/jni/LuaJIT-2.1/src/lj_jit.h
diff --git a/jni/LuaJIT-2.1/src/lj_lex.c b/love/src/jni/LuaJIT-2.1/src/lj_lex.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_lex.c
rename to love/src/jni/LuaJIT-2.1/src/lj_lex.c
diff --git a/jni/LuaJIT-2.1/src/lj_lex.h b/love/src/jni/LuaJIT-2.1/src/lj_lex.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_lex.h
rename to love/src/jni/LuaJIT-2.1/src/lj_lex.h
diff --git a/jni/LuaJIT-2.1/src/lj_lib.c b/love/src/jni/LuaJIT-2.1/src/lj_lib.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_lib.c
rename to love/src/jni/LuaJIT-2.1/src/lj_lib.c
diff --git a/jni/LuaJIT-2.1/src/lj_lib.h b/love/src/jni/LuaJIT-2.1/src/lj_lib.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_lib.h
rename to love/src/jni/LuaJIT-2.1/src/lj_lib.h
diff --git a/jni/LuaJIT-2.1/src/lj_load.c b/love/src/jni/LuaJIT-2.1/src/lj_load.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_load.c
rename to love/src/jni/LuaJIT-2.1/src/lj_load.c
diff --git a/jni/LuaJIT-2.1/src/lj_mcode.c b/love/src/jni/LuaJIT-2.1/src/lj_mcode.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_mcode.c
rename to love/src/jni/LuaJIT-2.1/src/lj_mcode.c
diff --git a/jni/LuaJIT-2.1/src/lj_mcode.h b/love/src/jni/LuaJIT-2.1/src/lj_mcode.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_mcode.h
rename to love/src/jni/LuaJIT-2.1/src/lj_mcode.h
diff --git a/jni/LuaJIT-2.1/src/lj_meta.c b/love/src/jni/LuaJIT-2.1/src/lj_meta.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_meta.c
rename to love/src/jni/LuaJIT-2.1/src/lj_meta.c
diff --git a/jni/LuaJIT-2.1/src/lj_meta.h b/love/src/jni/LuaJIT-2.1/src/lj_meta.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_meta.h
rename to love/src/jni/LuaJIT-2.1/src/lj_meta.h
diff --git a/jni/LuaJIT-2.1/src/lj_obj.c b/love/src/jni/LuaJIT-2.1/src/lj_obj.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_obj.c
rename to love/src/jni/LuaJIT-2.1/src/lj_obj.c
diff --git a/jni/LuaJIT-2.1/src/lj_obj.h b/love/src/jni/LuaJIT-2.1/src/lj_obj.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_obj.h
rename to love/src/jni/LuaJIT-2.1/src/lj_obj.h
diff --git a/jni/LuaJIT-2.1/src/lj_opt_dce.c b/love/src/jni/LuaJIT-2.1/src/lj_opt_dce.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_opt_dce.c
rename to love/src/jni/LuaJIT-2.1/src/lj_opt_dce.c
diff --git a/jni/LuaJIT-2.1/src/lj_opt_fold.c b/love/src/jni/LuaJIT-2.1/src/lj_opt_fold.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_opt_fold.c
rename to love/src/jni/LuaJIT-2.1/src/lj_opt_fold.c
diff --git a/jni/LuaJIT-2.1/src/lj_opt_loop.c b/love/src/jni/LuaJIT-2.1/src/lj_opt_loop.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_opt_loop.c
rename to love/src/jni/LuaJIT-2.1/src/lj_opt_loop.c
diff --git a/jni/LuaJIT-2.1/src/lj_opt_mem.c b/love/src/jni/LuaJIT-2.1/src/lj_opt_mem.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_opt_mem.c
rename to love/src/jni/LuaJIT-2.1/src/lj_opt_mem.c
diff --git a/jni/LuaJIT-2.1/src/lj_opt_narrow.c b/love/src/jni/LuaJIT-2.1/src/lj_opt_narrow.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_opt_narrow.c
rename to love/src/jni/LuaJIT-2.1/src/lj_opt_narrow.c
diff --git a/jni/LuaJIT-2.1/src/lj_opt_sink.c b/love/src/jni/LuaJIT-2.1/src/lj_opt_sink.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_opt_sink.c
rename to love/src/jni/LuaJIT-2.1/src/lj_opt_sink.c
diff --git a/jni/LuaJIT-2.1/src/lj_opt_split.c b/love/src/jni/LuaJIT-2.1/src/lj_opt_split.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_opt_split.c
rename to love/src/jni/LuaJIT-2.1/src/lj_opt_split.c
diff --git a/jni/LuaJIT-2.1/src/lj_parse.c b/love/src/jni/LuaJIT-2.1/src/lj_parse.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_parse.c
rename to love/src/jni/LuaJIT-2.1/src/lj_parse.c
diff --git a/jni/LuaJIT-2.1/src/lj_parse.h b/love/src/jni/LuaJIT-2.1/src/lj_parse.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_parse.h
rename to love/src/jni/LuaJIT-2.1/src/lj_parse.h
diff --git a/jni/LuaJIT-2.1/src/lj_profile.c b/love/src/jni/LuaJIT-2.1/src/lj_profile.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_profile.c
rename to love/src/jni/LuaJIT-2.1/src/lj_profile.c
diff --git a/jni/LuaJIT-2.1/src/lj_profile.h b/love/src/jni/LuaJIT-2.1/src/lj_profile.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_profile.h
rename to love/src/jni/LuaJIT-2.1/src/lj_profile.h
diff --git a/jni/LuaJIT-2.1/src/lj_record.c b/love/src/jni/LuaJIT-2.1/src/lj_record.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_record.c
rename to love/src/jni/LuaJIT-2.1/src/lj_record.c
diff --git a/jni/LuaJIT-2.1/src/lj_record.h b/love/src/jni/LuaJIT-2.1/src/lj_record.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_record.h
rename to love/src/jni/LuaJIT-2.1/src/lj_record.h
diff --git a/jni/LuaJIT-2.1/src/lj_snap.c b/love/src/jni/LuaJIT-2.1/src/lj_snap.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_snap.c
rename to love/src/jni/LuaJIT-2.1/src/lj_snap.c
diff --git a/jni/LuaJIT-2.1/src/lj_snap.h b/love/src/jni/LuaJIT-2.1/src/lj_snap.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_snap.h
rename to love/src/jni/LuaJIT-2.1/src/lj_snap.h
diff --git a/jni/LuaJIT-2.1/src/lj_state.c b/love/src/jni/LuaJIT-2.1/src/lj_state.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_state.c
rename to love/src/jni/LuaJIT-2.1/src/lj_state.c
diff --git a/jni/LuaJIT-2.1/src/lj_state.h b/love/src/jni/LuaJIT-2.1/src/lj_state.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_state.h
rename to love/src/jni/LuaJIT-2.1/src/lj_state.h
diff --git a/jni/LuaJIT-2.1/src/lj_str.c b/love/src/jni/LuaJIT-2.1/src/lj_str.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_str.c
rename to love/src/jni/LuaJIT-2.1/src/lj_str.c
diff --git a/jni/LuaJIT-2.1/src/lj_str.h b/love/src/jni/LuaJIT-2.1/src/lj_str.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_str.h
rename to love/src/jni/LuaJIT-2.1/src/lj_str.h
diff --git a/jni/LuaJIT-2.1/src/lj_strfmt.c b/love/src/jni/LuaJIT-2.1/src/lj_strfmt.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_strfmt.c
rename to love/src/jni/LuaJIT-2.1/src/lj_strfmt.c
diff --git a/jni/LuaJIT-2.1/src/lj_strfmt.h b/love/src/jni/LuaJIT-2.1/src/lj_strfmt.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_strfmt.h
rename to love/src/jni/LuaJIT-2.1/src/lj_strfmt.h
diff --git a/jni/LuaJIT-2.1/src/lj_strscan.c b/love/src/jni/LuaJIT-2.1/src/lj_strscan.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_strscan.c
rename to love/src/jni/LuaJIT-2.1/src/lj_strscan.c
diff --git a/jni/LuaJIT-2.1/src/lj_strscan.h b/love/src/jni/LuaJIT-2.1/src/lj_strscan.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_strscan.h
rename to love/src/jni/LuaJIT-2.1/src/lj_strscan.h
diff --git a/jni/LuaJIT-2.1/src/lj_tab.c b/love/src/jni/LuaJIT-2.1/src/lj_tab.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_tab.c
rename to love/src/jni/LuaJIT-2.1/src/lj_tab.c
diff --git a/jni/LuaJIT-2.1/src/lj_tab.h b/love/src/jni/LuaJIT-2.1/src/lj_tab.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_tab.h
rename to love/src/jni/LuaJIT-2.1/src/lj_tab.h
diff --git a/jni/LuaJIT-2.1/src/lj_target.h b/love/src/jni/LuaJIT-2.1/src/lj_target.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_target.h
rename to love/src/jni/LuaJIT-2.1/src/lj_target.h
diff --git a/jni/LuaJIT-2.1/src/lj_target_arm.h b/love/src/jni/LuaJIT-2.1/src/lj_target_arm.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_target_arm.h
rename to love/src/jni/LuaJIT-2.1/src/lj_target_arm.h
diff --git a/jni/LuaJIT-2.1/src/lj_target_arm64.h b/love/src/jni/LuaJIT-2.1/src/lj_target_arm64.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_target_arm64.h
rename to love/src/jni/LuaJIT-2.1/src/lj_target_arm64.h
diff --git a/jni/LuaJIT-2.1/src/lj_target_mips.h b/love/src/jni/LuaJIT-2.1/src/lj_target_mips.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_target_mips.h
rename to love/src/jni/LuaJIT-2.1/src/lj_target_mips.h
diff --git a/jni/LuaJIT-2.1/src/lj_target_ppc.h b/love/src/jni/LuaJIT-2.1/src/lj_target_ppc.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_target_ppc.h
rename to love/src/jni/LuaJIT-2.1/src/lj_target_ppc.h
diff --git a/jni/LuaJIT-2.1/src/lj_target_x86.h b/love/src/jni/LuaJIT-2.1/src/lj_target_x86.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_target_x86.h
rename to love/src/jni/LuaJIT-2.1/src/lj_target_x86.h
diff --git a/jni/LuaJIT-2.1/src/lj_trace.c b/love/src/jni/LuaJIT-2.1/src/lj_trace.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_trace.c
rename to love/src/jni/LuaJIT-2.1/src/lj_trace.c
diff --git a/jni/LuaJIT-2.1/src/lj_trace.h b/love/src/jni/LuaJIT-2.1/src/lj_trace.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_trace.h
rename to love/src/jni/LuaJIT-2.1/src/lj_trace.h
diff --git a/jni/LuaJIT-2.1/src/lj_traceerr.h b/love/src/jni/LuaJIT-2.1/src/lj_traceerr.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_traceerr.h
rename to love/src/jni/LuaJIT-2.1/src/lj_traceerr.h
diff --git a/jni/LuaJIT-2.1/src/lj_udata.c b/love/src/jni/LuaJIT-2.1/src/lj_udata.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_udata.c
rename to love/src/jni/LuaJIT-2.1/src/lj_udata.c
diff --git a/jni/LuaJIT-2.1/src/lj_udata.h b/love/src/jni/LuaJIT-2.1/src/lj_udata.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_udata.h
rename to love/src/jni/LuaJIT-2.1/src/lj_udata.h
diff --git a/jni/LuaJIT-2.1/src/lj_vm.h b/love/src/jni/LuaJIT-2.1/src/lj_vm.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_vm.h
rename to love/src/jni/LuaJIT-2.1/src/lj_vm.h
diff --git a/jni/LuaJIT-2.1/src/lj_vmevent.c b/love/src/jni/LuaJIT-2.1/src/lj_vmevent.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_vmevent.c
rename to love/src/jni/LuaJIT-2.1/src/lj_vmevent.c
diff --git a/jni/LuaJIT-2.1/src/lj_vmevent.h b/love/src/jni/LuaJIT-2.1/src/lj_vmevent.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_vmevent.h
rename to love/src/jni/LuaJIT-2.1/src/lj_vmevent.h
diff --git a/jni/LuaJIT-2.1/src/lj_vmmath.c b/love/src/jni/LuaJIT-2.1/src/lj_vmmath.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/lj_vmmath.c
rename to love/src/jni/LuaJIT-2.1/src/lj_vmmath.c
diff --git a/jni/LuaJIT-2.1/src/ljamalg.c b/love/src/jni/LuaJIT-2.1/src/ljamalg.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/ljamalg.c
rename to love/src/jni/LuaJIT-2.1/src/ljamalg.c
diff --git a/jni/LuaJIT-2.1/src/lua.h b/love/src/jni/LuaJIT-2.1/src/lua.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lua.h
rename to love/src/jni/LuaJIT-2.1/src/lua.h
diff --git a/jni/LuaJIT-2.1/src/lua.hpp b/love/src/jni/LuaJIT-2.1/src/lua.hpp
similarity index 100%
rename from jni/LuaJIT-2.1/src/lua.hpp
rename to love/src/jni/LuaJIT-2.1/src/lua.hpp
diff --git a/jni/LuaJIT-2.1/src/luaconf.h b/love/src/jni/LuaJIT-2.1/src/luaconf.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/luaconf.h
rename to love/src/jni/LuaJIT-2.1/src/luaconf.h
diff --git a/jni/LuaJIT-2.1/src/luajit.c b/love/src/jni/LuaJIT-2.1/src/luajit.c
similarity index 100%
rename from jni/LuaJIT-2.1/src/luajit.c
rename to love/src/jni/LuaJIT-2.1/src/luajit.c
diff --git a/jni/LuaJIT-2.1/src/luajit.h b/love/src/jni/LuaJIT-2.1/src/luajit.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/luajit.h
rename to love/src/jni/LuaJIT-2.1/src/luajit.h
diff --git a/jni/LuaJIT-2.1/src/lualib.h b/love/src/jni/LuaJIT-2.1/src/lualib.h
similarity index 100%
rename from jni/LuaJIT-2.1/src/lualib.h
rename to love/src/jni/LuaJIT-2.1/src/lualib.h
diff --git a/jni/LuaJIT-2.1/src/msvcbuild.bat b/love/src/jni/LuaJIT-2.1/src/msvcbuild.bat
similarity index 100%
rename from jni/LuaJIT-2.1/src/msvcbuild.bat
rename to love/src/jni/LuaJIT-2.1/src/msvcbuild.bat
diff --git a/jni/LuaJIT-2.1/src/ps4build.bat b/love/src/jni/LuaJIT-2.1/src/ps4build.bat
similarity index 100%
rename from jni/LuaJIT-2.1/src/ps4build.bat
rename to love/src/jni/LuaJIT-2.1/src/ps4build.bat
diff --git a/jni/LuaJIT-2.1/src/psvitabuild.bat b/love/src/jni/LuaJIT-2.1/src/psvitabuild.bat
similarity index 100%
rename from jni/LuaJIT-2.1/src/psvitabuild.bat
rename to love/src/jni/LuaJIT-2.1/src/psvitabuild.bat
diff --git a/jni/LuaJIT-2.1/src/vm_arm.dasc b/love/src/jni/LuaJIT-2.1/src/vm_arm.dasc
similarity index 100%
rename from jni/LuaJIT-2.1/src/vm_arm.dasc
rename to love/src/jni/LuaJIT-2.1/src/vm_arm.dasc
diff --git a/jni/LuaJIT-2.1/src/vm_arm64.dasc b/love/src/jni/LuaJIT-2.1/src/vm_arm64.dasc
similarity index 100%
rename from jni/LuaJIT-2.1/src/vm_arm64.dasc
rename to love/src/jni/LuaJIT-2.1/src/vm_arm64.dasc
diff --git a/jni/LuaJIT-2.1/src/vm_mips.dasc b/love/src/jni/LuaJIT-2.1/src/vm_mips.dasc
similarity index 100%
rename from jni/LuaJIT-2.1/src/vm_mips.dasc
rename to love/src/jni/LuaJIT-2.1/src/vm_mips.dasc
diff --git a/jni/LuaJIT-2.1/src/vm_ppc.dasc b/love/src/jni/LuaJIT-2.1/src/vm_ppc.dasc
similarity index 100%
rename from jni/LuaJIT-2.1/src/vm_ppc.dasc
rename to love/src/jni/LuaJIT-2.1/src/vm_ppc.dasc
diff --git a/jni/LuaJIT-2.1/src/vm_ppcspe.dasc b/love/src/jni/LuaJIT-2.1/src/vm_ppcspe.dasc
similarity index 100%
rename from jni/LuaJIT-2.1/src/vm_ppcspe.dasc
rename to love/src/jni/LuaJIT-2.1/src/vm_ppcspe.dasc
diff --git a/jni/LuaJIT-2.1/src/vm_x64.dasc b/love/src/jni/LuaJIT-2.1/src/vm_x64.dasc
similarity index 100%
rename from jni/LuaJIT-2.1/src/vm_x64.dasc
rename to love/src/jni/LuaJIT-2.1/src/vm_x64.dasc
diff --git a/jni/LuaJIT-2.1/src/vm_x86.dasc b/love/src/jni/LuaJIT-2.1/src/vm_x86.dasc
similarity index 100%
rename from jni/LuaJIT-2.1/src/vm_x86.dasc
rename to love/src/jni/LuaJIT-2.1/src/vm_x86.dasc
diff --git a/jni/LuaJIT-2.1/src/xb1build.bat b/love/src/jni/LuaJIT-2.1/src/xb1build.bat
similarity index 100%
rename from jni/LuaJIT-2.1/src/xb1build.bat
rename to love/src/jni/LuaJIT-2.1/src/xb1build.bat
diff --git a/jni/LuaJIT-2.1/src/xedkbuild.bat b/love/src/jni/LuaJIT-2.1/src/xedkbuild.bat
similarity index 100%
rename from jni/LuaJIT-2.1/src/xedkbuild.bat
rename to love/src/jni/LuaJIT-2.1/src/xedkbuild.bat
diff --git a/jni/SDL2-2.0.5/.hg_archival.txt b/love/src/jni/SDL2-2.0.5/.hg_archival.txt
similarity index 100%
rename from jni/SDL2-2.0.5/.hg_archival.txt
rename to love/src/jni/SDL2-2.0.5/.hg_archival.txt
diff --git a/jni/SDL2-2.0.5/.hgignore b/love/src/jni/SDL2-2.0.5/.hgignore
similarity index 100%
rename from jni/SDL2-2.0.5/.hgignore
rename to love/src/jni/SDL2-2.0.5/.hgignore
diff --git a/jni/SDL2-2.0.5/.hgtags b/love/src/jni/SDL2-2.0.5/.hgtags
similarity index 100%
rename from jni/SDL2-2.0.5/.hgtags
rename to love/src/jni/SDL2-2.0.5/.hgtags
diff --git a/jni/SDL2-2.0.5/Android.mk b/love/src/jni/SDL2-2.0.5/Android.mk
similarity index 100%
rename from jni/SDL2-2.0.5/Android.mk
rename to love/src/jni/SDL2-2.0.5/Android.mk
diff --git a/jni/SDL2-2.0.5/BUGS.txt b/love/src/jni/SDL2-2.0.5/BUGS.txt
similarity index 100%
rename from jni/SDL2-2.0.5/BUGS.txt
rename to love/src/jni/SDL2-2.0.5/BUGS.txt
diff --git a/jni/SDL2-2.0.5/CMakeLists.txt b/love/src/jni/SDL2-2.0.5/CMakeLists.txt
similarity index 100%
rename from jni/SDL2-2.0.5/CMakeLists.txt
rename to love/src/jni/SDL2-2.0.5/CMakeLists.txt
diff --git a/jni/SDL2-2.0.5/COPYING.txt b/love/src/jni/SDL2-2.0.5/COPYING.txt
similarity index 100%
rename from jni/SDL2-2.0.5/COPYING.txt
rename to love/src/jni/SDL2-2.0.5/COPYING.txt
diff --git a/jni/SDL2-2.0.5/CREDITS.txt b/love/src/jni/SDL2-2.0.5/CREDITS.txt
similarity index 100%
rename from jni/SDL2-2.0.5/CREDITS.txt
rename to love/src/jni/SDL2-2.0.5/CREDITS.txt
diff --git a/jni/SDL2-2.0.5/INSTALL.txt b/love/src/jni/SDL2-2.0.5/INSTALL.txt
similarity index 100%
rename from jni/SDL2-2.0.5/INSTALL.txt
rename to love/src/jni/SDL2-2.0.5/INSTALL.txt
diff --git a/jni/SDL2-2.0.5/Makefile.in b/love/src/jni/SDL2-2.0.5/Makefile.in
similarity index 100%
rename from jni/SDL2-2.0.5/Makefile.in
rename to love/src/jni/SDL2-2.0.5/Makefile.in
diff --git a/jni/SDL2-2.0.5/Makefile.minimal b/love/src/jni/SDL2-2.0.5/Makefile.minimal
similarity index 100%
rename from jni/SDL2-2.0.5/Makefile.minimal
rename to love/src/jni/SDL2-2.0.5/Makefile.minimal
diff --git a/jni/SDL2-2.0.5/Makefile.pandora b/love/src/jni/SDL2-2.0.5/Makefile.pandora
similarity index 100%
rename from jni/SDL2-2.0.5/Makefile.pandora
rename to love/src/jni/SDL2-2.0.5/Makefile.pandora
diff --git a/jni/SDL2-2.0.5/Makefile.psp b/love/src/jni/SDL2-2.0.5/Makefile.psp
similarity index 100%
rename from jni/SDL2-2.0.5/Makefile.psp
rename to love/src/jni/SDL2-2.0.5/Makefile.psp
diff --git a/jni/SDL2-2.0.5/Makefile.wiz b/love/src/jni/SDL2-2.0.5/Makefile.wiz
similarity index 100%
rename from jni/SDL2-2.0.5/Makefile.wiz
rename to love/src/jni/SDL2-2.0.5/Makefile.wiz
diff --git a/jni/SDL2-2.0.5/README-SDL.txt b/love/src/jni/SDL2-2.0.5/README-SDL.txt
similarity index 100%
rename from jni/SDL2-2.0.5/README-SDL.txt
rename to love/src/jni/SDL2-2.0.5/README-SDL.txt
diff --git a/jni/SDL2-2.0.5/README.txt b/love/src/jni/SDL2-2.0.5/README.txt
similarity index 100%
rename from jni/SDL2-2.0.5/README.txt
rename to love/src/jni/SDL2-2.0.5/README.txt
diff --git a/jni/SDL2-2.0.5/SDL.tag b/love/src/jni/SDL2-2.0.5/SDL.tag
similarity index 100%
rename from jni/SDL2-2.0.5/SDL.tag
rename to love/src/jni/SDL2-2.0.5/SDL.tag
diff --git a/jni/SDL2-2.0.5/SDL2.spec.in b/love/src/jni/SDL2-2.0.5/SDL2.spec.in
similarity index 100%
rename from jni/SDL2-2.0.5/SDL2.spec.in
rename to love/src/jni/SDL2-2.0.5/SDL2.spec.in
diff --git a/jni/SDL2-2.0.5/TODO.txt b/love/src/jni/SDL2-2.0.5/TODO.txt
similarity index 100%
rename from jni/SDL2-2.0.5/TODO.txt
rename to love/src/jni/SDL2-2.0.5/TODO.txt
diff --git a/jni/SDL2-2.0.5/VisualC.html b/love/src/jni/SDL2-2.0.5/VisualC.html
similarity index 100%
rename from jni/SDL2-2.0.5/VisualC.html
rename to love/src/jni/SDL2-2.0.5/VisualC.html
diff --git a/jni/SDL2-2.0.5/WhatsNew.txt b/love/src/jni/SDL2-2.0.5/WhatsNew.txt
similarity index 100%
rename from jni/SDL2-2.0.5/WhatsNew.txt
rename to love/src/jni/SDL2-2.0.5/WhatsNew.txt
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/Default.png b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/Default.png
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/Default.png
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/Default.png
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/Demos.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/Demos.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/Demos.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/Demos.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/Icon.png b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/Icon.png
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/Icon.png
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/Icon.png
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/Info.plist b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/Info.plist
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/Info.plist
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/Info.plist
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/README b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/README
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/README
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/README
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/bitmapfont/kromasky_16x16.bmp b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/bitmapfont/kromasky_16x16.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/data/bitmapfont/kromasky_16x16.bmp
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/bitmapfont/kromasky_16x16.bmp
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/bitmapfont/license.txt b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/bitmapfont/license.txt
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/data/bitmapfont/license.txt
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/bitmapfont/license.txt
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_brush_snare.wav b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_brush_snare.wav
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_brush_snare.wav
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_brush_snare.wav
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_china.wav b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_china.wav
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_china.wav
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_china.wav
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_kick_big_amb.wav b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_kick_big_amb.wav
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_kick_big_amb.wav
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_kick_big_amb.wav
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_loose_skin_mute.wav b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_loose_skin_mute.wav
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_loose_skin_mute.wav
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/drums/ds_loose_skin_mute.wav
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/icon.bmp b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/icon.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/data/icon.bmp
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/icon.bmp
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/ship.bmp b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/ship.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/data/ship.bmp
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/ship.bmp
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/space.bmp b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/space.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/data/space.bmp
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/space.bmp
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/stroke.bmp b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/stroke.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/data/stroke.bmp
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/data/stroke.bmp
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/accelerometer.c b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/accelerometer.c
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/src/accelerometer.c
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/accelerometer.c
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/common.c b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/common.c
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/src/common.c
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/common.c
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/common.h b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/common.h
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/src/common.h
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/common.h
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/fireworks.c b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/fireworks.c
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/src/fireworks.c
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/fireworks.c
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/happy.c b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/happy.c
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/src/happy.c
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/happy.c
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/keyboard.c b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/keyboard.c
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/src/keyboard.c
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/keyboard.c
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/mixer.c b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/mixer.c
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/src/mixer.c
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/mixer.c
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/rectangles.c b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/rectangles.c
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/src/rectangles.c
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/rectangles.c
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/touch.c b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/touch.c
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Demos/src/touch.c
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Demos/src/touch.c
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/SDL/SDL.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/Xcode-iOS/SDL/SDL.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/SDL/SDL.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/SDL/SDL.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/SDLtest/SDL2test.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/Xcode-iOS/SDLtest/SDL2test.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/SDLtest/SDL2test.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/SDLtest/SDL2test.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Default-568h@2x.png b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Default-568h@2x.png
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Default-568h@2x.png
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Default-568h@2x.png
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Default.png b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Default.png
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Default.png
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Default.png
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Icon.png b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Icon.png
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Icon.png
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Icon.png
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Info.plist b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Info.plist
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Info.plist
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/Info.plist
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.xcworkspace/contents.xcworkspacedata
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.xcworkspace/contents.xcworkspacedata
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.xcworkspace/contents.xcworkspacedata
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/main.c b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/main.c
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/main.c
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Template/SDL iOS Application/main.c
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Test/Info.plist b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Test/Info.plist
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Test/Info.plist
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Test/Info.plist
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Test/README b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Test/README
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Test/README
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Test/README
diff --git a/jni/SDL2-2.0.5/Xcode-iOS/Test/TestiPhoneOS.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/Xcode-iOS/Test/TestiPhoneOS.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode-iOS/Test/TestiPhoneOS.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/Xcode-iOS/Test/TestiPhoneOS.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/Xcode/SDL/Info-Framework.plist b/love/src/jni/SDL2-2.0.5/Xcode/SDL/Info-Framework.plist
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode/SDL/Info-Framework.plist
rename to love/src/jni/SDL2-2.0.5/Xcode/SDL/Info-Framework.plist
diff --git a/jni/SDL2-2.0.5/Xcode/SDL/SDL.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/Xcode/SDL/SDL.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode/SDL/SDL.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/Xcode/SDL/SDL.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/SDL.info b/love/src/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/SDL.info
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode/SDL/pkg-support/SDL.info
rename to love/src/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/SDL.info
diff --git a/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/codesign-frameworks.sh b/love/src/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/codesign-frameworks.sh
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode/SDL/pkg-support/codesign-frameworks.sh
rename to love/src/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/codesign-frameworks.sh
diff --git a/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/resources/License.txt b/love/src/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/resources/License.txt
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode/SDL/pkg-support/resources/License.txt
rename to love/src/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/resources/License.txt
diff --git a/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/resources/ReadMe.txt b/love/src/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/resources/ReadMe.txt
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode/SDL/pkg-support/resources/ReadMe.txt
rename to love/src/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/resources/ReadMe.txt
diff --git a/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/resources/SDL_DS_Store b/love/src/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/resources/SDL_DS_Store
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode/SDL/pkg-support/resources/SDL_DS_Store
rename to love/src/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/resources/SDL_DS_Store
diff --git a/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/sdl_logo.pdf b/love/src/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/sdl_logo.pdf
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode/SDL/pkg-support/sdl_logo.pdf
rename to love/src/jni/SDL2-2.0.5/Xcode/SDL/pkg-support/sdl_logo.pdf
diff --git a/jni/SDL2-2.0.5/Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/Xcode/SDLTest/TestDropFile-Info.plist b/love/src/jni/SDL2-2.0.5/Xcode/SDLTest/TestDropFile-Info.plist
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode/SDLTest/TestDropFile-Info.plist
rename to love/src/jni/SDL2-2.0.5/Xcode/SDLTest/TestDropFile-Info.plist
diff --git a/jni/SDL2-2.0.5/Xcode/XcodeDocSet/Doxyfile b/love/src/jni/SDL2-2.0.5/Xcode/XcodeDocSet/Doxyfile
similarity index 100%
rename from jni/SDL2-2.0.5/Xcode/XcodeDocSet/Doxyfile
rename to love/src/jni/SDL2-2.0.5/Xcode/XcodeDocSet/Doxyfile
diff --git a/jni/SDL2-2.0.5/acinclude/ac_check_define.m4 b/love/src/jni/SDL2-2.0.5/acinclude/ac_check_define.m4
similarity index 100%
rename from jni/SDL2-2.0.5/acinclude/ac_check_define.m4
rename to love/src/jni/SDL2-2.0.5/acinclude/ac_check_define.m4
diff --git a/jni/SDL2-2.0.5/acinclude/alsa.m4 b/love/src/jni/SDL2-2.0.5/acinclude/alsa.m4
similarity index 100%
rename from jni/SDL2-2.0.5/acinclude/alsa.m4
rename to love/src/jni/SDL2-2.0.5/acinclude/alsa.m4
diff --git a/jni/SDL2-2.0.5/acinclude/ax_check_compiler_flags.m4 b/love/src/jni/SDL2-2.0.5/acinclude/ax_check_compiler_flags.m4
similarity index 100%
rename from jni/SDL2-2.0.5/acinclude/ax_check_compiler_flags.m4
rename to love/src/jni/SDL2-2.0.5/acinclude/ax_check_compiler_flags.m4
diff --git a/jni/SDL2-2.0.5/acinclude/ax_gcc_archflag.m4 b/love/src/jni/SDL2-2.0.5/acinclude/ax_gcc_archflag.m4
similarity index 100%
rename from jni/SDL2-2.0.5/acinclude/ax_gcc_archflag.m4
rename to love/src/jni/SDL2-2.0.5/acinclude/ax_gcc_archflag.m4
diff --git a/jni/SDL2-2.0.5/acinclude/ax_gcc_x86_cpuid.m4.htm b/love/src/jni/SDL2-2.0.5/acinclude/ax_gcc_x86_cpuid.m4.htm
similarity index 100%
rename from jni/SDL2-2.0.5/acinclude/ax_gcc_x86_cpuid.m4.htm
rename to love/src/jni/SDL2-2.0.5/acinclude/ax_gcc_x86_cpuid.m4.htm
diff --git a/jni/SDL2-2.0.5/acinclude/esd.m4 b/love/src/jni/SDL2-2.0.5/acinclude/esd.m4
similarity index 100%
rename from jni/SDL2-2.0.5/acinclude/esd.m4
rename to love/src/jni/SDL2-2.0.5/acinclude/esd.m4
diff --git a/jni/SDL2-2.0.5/acinclude/libtool.m4 b/love/src/jni/SDL2-2.0.5/acinclude/libtool.m4
similarity index 100%
rename from jni/SDL2-2.0.5/acinclude/libtool.m4
rename to love/src/jni/SDL2-2.0.5/acinclude/libtool.m4
diff --git a/jni/SDL2-2.0.5/acinclude/ltoptions.m4 b/love/src/jni/SDL2-2.0.5/acinclude/ltoptions.m4
similarity index 100%
rename from jni/SDL2-2.0.5/acinclude/ltoptions.m4
rename to love/src/jni/SDL2-2.0.5/acinclude/ltoptions.m4
diff --git a/jni/SDL2-2.0.5/acinclude/ltsugar.m4 b/love/src/jni/SDL2-2.0.5/acinclude/ltsugar.m4
similarity index 100%
rename from jni/SDL2-2.0.5/acinclude/ltsugar.m4
rename to love/src/jni/SDL2-2.0.5/acinclude/ltsugar.m4
diff --git a/jni/SDL2-2.0.5/acinclude/ltversion.m4 b/love/src/jni/SDL2-2.0.5/acinclude/ltversion.m4
similarity index 100%
rename from jni/SDL2-2.0.5/acinclude/ltversion.m4
rename to love/src/jni/SDL2-2.0.5/acinclude/ltversion.m4
diff --git a/jni/SDL2-2.0.5/acinclude/lt~obsolete.m4 b/love/src/jni/SDL2-2.0.5/acinclude/lt~obsolete.m4
similarity index 100%
rename from jni/SDL2-2.0.5/acinclude/lt~obsolete.m4
rename to love/src/jni/SDL2-2.0.5/acinclude/lt~obsolete.m4
diff --git a/jni/SDL2-2.0.5/android-project/AndroidManifest.xml b/love/src/jni/SDL2-2.0.5/android-project/AndroidManifest.xml
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/AndroidManifest.xml
rename to love/src/jni/SDL2-2.0.5/android-project/AndroidManifest.xml
diff --git a/ant.properties b/love/src/jni/SDL2-2.0.5/android-project/ant.properties
similarity index 100%
rename from ant.properties
rename to love/src/jni/SDL2-2.0.5/android-project/ant.properties
diff --git a/build.properties b/love/src/jni/SDL2-2.0.5/android-project/build.properties
similarity index 100%
rename from build.properties
rename to love/src/jni/SDL2-2.0.5/android-project/build.properties
diff --git a/jni/SDL2-2.0.5/android-project/build.xml b/love/src/jni/SDL2-2.0.5/android-project/build.xml
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/build.xml
rename to love/src/jni/SDL2-2.0.5/android-project/build.xml
diff --git a/jni/SDL2-2.0.5/android-project/default.properties b/love/src/jni/SDL2-2.0.5/android-project/default.properties
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/default.properties
rename to love/src/jni/SDL2-2.0.5/android-project/default.properties
diff --git a/jni/SDL2-2.0.5/android-project/jni/Android.mk b/love/src/jni/SDL2-2.0.5/android-project/jni/Android.mk
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/jni/Android.mk
rename to love/src/jni/SDL2-2.0.5/android-project/jni/Android.mk
diff --git a/jni/SDL2-2.0.5/android-project/jni/Application.mk b/love/src/jni/SDL2-2.0.5/android-project/jni/Application.mk
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/jni/Application.mk
rename to love/src/jni/SDL2-2.0.5/android-project/jni/Application.mk
diff --git a/jni/SDL2-2.0.5/android-project/jni/src/Android.mk b/love/src/jni/SDL2-2.0.5/android-project/jni/src/Android.mk
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/jni/src/Android.mk
rename to love/src/jni/SDL2-2.0.5/android-project/jni/src/Android.mk
diff --git a/jni/SDL2-2.0.5/android-project/jni/src/Android_static.mk b/love/src/jni/SDL2-2.0.5/android-project/jni/src/Android_static.mk
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/jni/src/Android_static.mk
rename to love/src/jni/SDL2-2.0.5/android-project/jni/src/Android_static.mk
diff --git a/jni/SDL2-2.0.5/android-project/proguard-project.txt b/love/src/jni/SDL2-2.0.5/android-project/proguard-project.txt
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/proguard-project.txt
rename to love/src/jni/SDL2-2.0.5/android-project/proguard-project.txt
diff --git a/jni/SDL2-2.0.5/android-project/project.properties b/love/src/jni/SDL2-2.0.5/android-project/project.properties
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/project.properties
rename to love/src/jni/SDL2-2.0.5/android-project/project.properties
diff --git a/jni/SDL2-2.0.5/android-project/res/drawable-hdpi/ic_launcher.png b/love/src/jni/SDL2-2.0.5/android-project/res/drawable-hdpi/ic_launcher.png
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/res/drawable-hdpi/ic_launcher.png
rename to love/src/jni/SDL2-2.0.5/android-project/res/drawable-hdpi/ic_launcher.png
diff --git a/jni/SDL2-2.0.5/android-project/res/drawable-mdpi/ic_launcher.png b/love/src/jni/SDL2-2.0.5/android-project/res/drawable-mdpi/ic_launcher.png
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/res/drawable-mdpi/ic_launcher.png
rename to love/src/jni/SDL2-2.0.5/android-project/res/drawable-mdpi/ic_launcher.png
diff --git a/jni/SDL2-2.0.5/android-project/res/drawable-xhdpi/ic_launcher.png b/love/src/jni/SDL2-2.0.5/android-project/res/drawable-xhdpi/ic_launcher.png
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/res/drawable-xhdpi/ic_launcher.png
rename to love/src/jni/SDL2-2.0.5/android-project/res/drawable-xhdpi/ic_launcher.png
diff --git a/jni/SDL2-2.0.5/android-project/res/drawable-xxhdpi/ic_launcher.png b/love/src/jni/SDL2-2.0.5/android-project/res/drawable-xxhdpi/ic_launcher.png
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/res/drawable-xxhdpi/ic_launcher.png
rename to love/src/jni/SDL2-2.0.5/android-project/res/drawable-xxhdpi/ic_launcher.png
diff --git a/jni/SDL2-2.0.5/android-project/res/layout/main.xml b/love/src/jni/SDL2-2.0.5/android-project/res/layout/main.xml
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/res/layout/main.xml
rename to love/src/jni/SDL2-2.0.5/android-project/res/layout/main.xml
diff --git a/jni/SDL2-2.0.5/android-project/res/values/strings.xml b/love/src/jni/SDL2-2.0.5/android-project/res/values/strings.xml
similarity index 100%
rename from jni/SDL2-2.0.5/android-project/res/values/strings.xml
rename to love/src/jni/SDL2-2.0.5/android-project/res/values/strings.xml
diff --git a/src/org/libsdl/app/SDLActivity.java b/love/src/jni/SDL2-2.0.5/android-project/src/org/libsdl/app/SDLActivity.java
similarity index 100%
rename from src/org/libsdl/app/SDLActivity.java
rename to love/src/jni/SDL2-2.0.5/android-project/src/org/libsdl/app/SDLActivity.java
diff --git a/jni/SDL2-2.0.5/autogen.sh b/love/src/jni/SDL2-2.0.5/autogen.sh
similarity index 100%
rename from jni/SDL2-2.0.5/autogen.sh
rename to love/src/jni/SDL2-2.0.5/autogen.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/androidbuild.sh b/love/src/jni/SDL2-2.0.5/build-scripts/androidbuild.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/androidbuild.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/androidbuild.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/checker-buildbot.sh b/love/src/jni/SDL2-2.0.5/build-scripts/checker-buildbot.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/checker-buildbot.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/checker-buildbot.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/config.guess b/love/src/jni/SDL2-2.0.5/build-scripts/config.guess
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/config.guess
rename to love/src/jni/SDL2-2.0.5/build-scripts/config.guess
diff --git a/jni/SDL2-2.0.5/build-scripts/config.sub b/love/src/jni/SDL2-2.0.5/build-scripts/config.sub
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/config.sub
rename to love/src/jni/SDL2-2.0.5/build-scripts/config.sub
diff --git a/jni/SDL2-2.0.5/build-scripts/emscripten-buildbot.sh b/love/src/jni/SDL2-2.0.5/build-scripts/emscripten-buildbot.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/emscripten-buildbot.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/emscripten-buildbot.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/g++-fat.sh b/love/src/jni/SDL2-2.0.5/build-scripts/g++-fat.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/g++-fat.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/g++-fat.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/gcc-fat.sh b/love/src/jni/SDL2-2.0.5/build-scripts/gcc-fat.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/gcc-fat.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/gcc-fat.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/install-sh b/love/src/jni/SDL2-2.0.5/build-scripts/install-sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/install-sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/install-sh
diff --git a/jni/SDL2-2.0.5/build-scripts/iosbuild.sh b/love/src/jni/SDL2-2.0.5/build-scripts/iosbuild.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/iosbuild.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/iosbuild.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/ltmain.sh b/love/src/jni/SDL2-2.0.5/build-scripts/ltmain.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/ltmain.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/ltmain.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/mkinstalldirs b/love/src/jni/SDL2-2.0.5/build-scripts/mkinstalldirs
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/mkinstalldirs
rename to love/src/jni/SDL2-2.0.5/build-scripts/mkinstalldirs
diff --git a/jni/SDL2-2.0.5/build-scripts/nacl-buildbot.sh b/love/src/jni/SDL2-2.0.5/build-scripts/nacl-buildbot.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/nacl-buildbot.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/nacl-buildbot.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/naclbuild.sh b/love/src/jni/SDL2-2.0.5/build-scripts/naclbuild.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/naclbuild.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/naclbuild.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/raspberrypi-buildbot.sh b/love/src/jni/SDL2-2.0.5/build-scripts/raspberrypi-buildbot.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/raspberrypi-buildbot.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/raspberrypi-buildbot.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/showrev.sh b/love/src/jni/SDL2-2.0.5/build-scripts/showrev.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/showrev.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/showrev.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/strip_fPIC.sh b/love/src/jni/SDL2-2.0.5/build-scripts/strip_fPIC.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/strip_fPIC.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/strip_fPIC.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/update-copyright.sh b/love/src/jni/SDL2-2.0.5/build-scripts/update-copyright.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/update-copyright.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/update-copyright.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/updaterev.sh b/love/src/jni/SDL2-2.0.5/build-scripts/updaterev.sh
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/updaterev.sh
rename to love/src/jni/SDL2-2.0.5/build-scripts/updaterev.sh
diff --git a/jni/SDL2-2.0.5/build-scripts/windows-buildbot-zipper.bat b/love/src/jni/SDL2-2.0.5/build-scripts/windows-buildbot-zipper.bat
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/windows-buildbot-zipper.bat
rename to love/src/jni/SDL2-2.0.5/build-scripts/windows-buildbot-zipper.bat
diff --git a/jni/SDL2-2.0.5/build-scripts/winrtbuild.bat b/love/src/jni/SDL2-2.0.5/build-scripts/winrtbuild.bat
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/winrtbuild.bat
rename to love/src/jni/SDL2-2.0.5/build-scripts/winrtbuild.bat
diff --git a/jni/SDL2-2.0.5/build-scripts/winrtbuild.ps1 b/love/src/jni/SDL2-2.0.5/build-scripts/winrtbuild.ps1
similarity index 100%
rename from jni/SDL2-2.0.5/build-scripts/winrtbuild.ps1
rename to love/src/jni/SDL2-2.0.5/build-scripts/winrtbuild.ps1
diff --git a/jni/SDL2-2.0.5/cmake/macros.cmake b/love/src/jni/SDL2-2.0.5/cmake/macros.cmake
similarity index 100%
rename from jni/SDL2-2.0.5/cmake/macros.cmake
rename to love/src/jni/SDL2-2.0.5/cmake/macros.cmake
diff --git a/jni/SDL2-2.0.5/cmake/sdlchecks.cmake b/love/src/jni/SDL2-2.0.5/cmake/sdlchecks.cmake
similarity index 100%
rename from jni/SDL2-2.0.5/cmake/sdlchecks.cmake
rename to love/src/jni/SDL2-2.0.5/cmake/sdlchecks.cmake
diff --git a/jni/SDL2-2.0.5/cmake_uninstall.cmake.in b/love/src/jni/SDL2-2.0.5/cmake_uninstall.cmake.in
similarity index 100%
rename from jni/SDL2-2.0.5/cmake_uninstall.cmake.in
rename to love/src/jni/SDL2-2.0.5/cmake_uninstall.cmake.in
diff --git a/jni/SDL2-2.0.5/configure b/love/src/jni/SDL2-2.0.5/configure
similarity index 100%
rename from jni/SDL2-2.0.5/configure
rename to love/src/jni/SDL2-2.0.5/configure
diff --git a/jni/SDL2-2.0.5/configure.in b/love/src/jni/SDL2-2.0.5/configure.in
similarity index 100%
rename from jni/SDL2-2.0.5/configure.in
rename to love/src/jni/SDL2-2.0.5/configure.in
diff --git a/jni/SDL2-2.0.5/debian/changelog b/love/src/jni/SDL2-2.0.5/debian/changelog
similarity index 100%
rename from jni/SDL2-2.0.5/debian/changelog
rename to love/src/jni/SDL2-2.0.5/debian/changelog
diff --git a/jni/SDL2-2.0.5/debian/compat b/love/src/jni/SDL2-2.0.5/debian/compat
similarity index 100%
rename from jni/SDL2-2.0.5/debian/compat
rename to love/src/jni/SDL2-2.0.5/debian/compat
diff --git a/jni/SDL2-2.0.5/debian/control b/love/src/jni/SDL2-2.0.5/debian/control
similarity index 100%
rename from jni/SDL2-2.0.5/debian/control
rename to love/src/jni/SDL2-2.0.5/debian/control
diff --git a/jni/SDL2-2.0.5/debian/copyright b/love/src/jni/SDL2-2.0.5/debian/copyright
similarity index 100%
rename from jni/SDL2-2.0.5/debian/copyright
rename to love/src/jni/SDL2-2.0.5/debian/copyright
diff --git a/jni/SDL2-2.0.5/debian/docs b/love/src/jni/SDL2-2.0.5/debian/docs
similarity index 100%
rename from jni/SDL2-2.0.5/debian/docs
rename to love/src/jni/SDL2-2.0.5/debian/docs
diff --git a/jni/SDL2-2.0.5/debian/libsdl2-dev.install b/love/src/jni/SDL2-2.0.5/debian/libsdl2-dev.install
similarity index 100%
rename from jni/SDL2-2.0.5/debian/libsdl2-dev.install
rename to love/src/jni/SDL2-2.0.5/debian/libsdl2-dev.install
diff --git a/jni/SDL2-2.0.5/debian/libsdl2-dev.manpages b/love/src/jni/SDL2-2.0.5/debian/libsdl2-dev.manpages
similarity index 100%
rename from jni/SDL2-2.0.5/debian/libsdl2-dev.manpages
rename to love/src/jni/SDL2-2.0.5/debian/libsdl2-dev.manpages
diff --git a/jni/SDL2-2.0.5/debian/libsdl2.install b/love/src/jni/SDL2-2.0.5/debian/libsdl2.install
similarity index 100%
rename from jni/SDL2-2.0.5/debian/libsdl2.install
rename to love/src/jni/SDL2-2.0.5/debian/libsdl2.install
diff --git a/jni/SDL2-2.0.5/debian/rules b/love/src/jni/SDL2-2.0.5/debian/rules
similarity index 100%
rename from jni/SDL2-2.0.5/debian/rules
rename to love/src/jni/SDL2-2.0.5/debian/rules
diff --git a/jni/SDL2-2.0.5/debian/sdl2-config.1 b/love/src/jni/SDL2-2.0.5/debian/sdl2-config.1
similarity index 100%
rename from jni/SDL2-2.0.5/debian/sdl2-config.1
rename to love/src/jni/SDL2-2.0.5/debian/sdl2-config.1
diff --git a/jni/SDL2-2.0.5/debian/source/format b/love/src/jni/SDL2-2.0.5/debian/source/format
similarity index 100%
rename from jni/SDL2-2.0.5/debian/source/format
rename to love/src/jni/SDL2-2.0.5/debian/source/format
diff --git a/jni/SDL2-2.0.5/debian/watch b/love/src/jni/SDL2-2.0.5/debian/watch
similarity index 100%
rename from jni/SDL2-2.0.5/debian/watch
rename to love/src/jni/SDL2-2.0.5/debian/watch
diff --git a/jni/SDL2-2.0.5/docs/README-android.md b/love/src/jni/SDL2-2.0.5/docs/README-android.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-android.md
rename to love/src/jni/SDL2-2.0.5/docs/README-android.md
diff --git a/jni/SDL2-2.0.5/docs/README-cmake.md b/love/src/jni/SDL2-2.0.5/docs/README-cmake.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-cmake.md
rename to love/src/jni/SDL2-2.0.5/docs/README-cmake.md
diff --git a/jni/SDL2-2.0.5/docs/README-directfb.md b/love/src/jni/SDL2-2.0.5/docs/README-directfb.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-directfb.md
rename to love/src/jni/SDL2-2.0.5/docs/README-directfb.md
diff --git a/jni/SDL2-2.0.5/docs/README-dynapi.md b/love/src/jni/SDL2-2.0.5/docs/README-dynapi.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-dynapi.md
rename to love/src/jni/SDL2-2.0.5/docs/README-dynapi.md
diff --git a/jni/SDL2-2.0.5/docs/README-gesture.md b/love/src/jni/SDL2-2.0.5/docs/README-gesture.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-gesture.md
rename to love/src/jni/SDL2-2.0.5/docs/README-gesture.md
diff --git a/jni/SDL2-2.0.5/docs/README-hg.md b/love/src/jni/SDL2-2.0.5/docs/README-hg.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-hg.md
rename to love/src/jni/SDL2-2.0.5/docs/README-hg.md
diff --git a/jni/SDL2-2.0.5/docs/README-ios.md b/love/src/jni/SDL2-2.0.5/docs/README-ios.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-ios.md
rename to love/src/jni/SDL2-2.0.5/docs/README-ios.md
diff --git a/jni/SDL2-2.0.5/docs/README-linux.md b/love/src/jni/SDL2-2.0.5/docs/README-linux.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-linux.md
rename to love/src/jni/SDL2-2.0.5/docs/README-linux.md
diff --git a/jni/SDL2-2.0.5/docs/README-macosx.md b/love/src/jni/SDL2-2.0.5/docs/README-macosx.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-macosx.md
rename to love/src/jni/SDL2-2.0.5/docs/README-macosx.md
diff --git a/jni/SDL2-2.0.5/docs/README-nacl.md b/love/src/jni/SDL2-2.0.5/docs/README-nacl.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-nacl.md
rename to love/src/jni/SDL2-2.0.5/docs/README-nacl.md
diff --git a/jni/SDL2-2.0.5/docs/README-pandora.md b/love/src/jni/SDL2-2.0.5/docs/README-pandora.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-pandora.md
rename to love/src/jni/SDL2-2.0.5/docs/README-pandora.md
diff --git a/jni/SDL2-2.0.5/docs/README-platforms.md b/love/src/jni/SDL2-2.0.5/docs/README-platforms.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-platforms.md
rename to love/src/jni/SDL2-2.0.5/docs/README-platforms.md
diff --git a/jni/SDL2-2.0.5/docs/README-porting.md b/love/src/jni/SDL2-2.0.5/docs/README-porting.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-porting.md
rename to love/src/jni/SDL2-2.0.5/docs/README-porting.md
diff --git a/jni/SDL2-2.0.5/docs/README-psp.md b/love/src/jni/SDL2-2.0.5/docs/README-psp.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-psp.md
rename to love/src/jni/SDL2-2.0.5/docs/README-psp.md
diff --git a/jni/SDL2-2.0.5/docs/README-raspberrypi.md b/love/src/jni/SDL2-2.0.5/docs/README-raspberrypi.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-raspberrypi.md
rename to love/src/jni/SDL2-2.0.5/docs/README-raspberrypi.md
diff --git a/jni/SDL2-2.0.5/docs/README-touch.md b/love/src/jni/SDL2-2.0.5/docs/README-touch.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-touch.md
rename to love/src/jni/SDL2-2.0.5/docs/README-touch.md
diff --git a/jni/SDL2-2.0.5/docs/README-wince.md b/love/src/jni/SDL2-2.0.5/docs/README-wince.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-wince.md
rename to love/src/jni/SDL2-2.0.5/docs/README-wince.md
diff --git a/jni/SDL2-2.0.5/docs/README-windows.md b/love/src/jni/SDL2-2.0.5/docs/README-windows.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-windows.md
rename to love/src/jni/SDL2-2.0.5/docs/README-windows.md
diff --git a/jni/SDL2-2.0.5/docs/README-winrt.md b/love/src/jni/SDL2-2.0.5/docs/README-winrt.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README-winrt.md
rename to love/src/jni/SDL2-2.0.5/docs/README-winrt.md
diff --git a/jni/SDL2-2.0.5/docs/README.md b/love/src/jni/SDL2-2.0.5/docs/README.md
similarity index 100%
rename from jni/SDL2-2.0.5/docs/README.md
rename to love/src/jni/SDL2-2.0.5/docs/README.md
diff --git a/jni/SDL2-2.0.5/docs/doxyfile b/love/src/jni/SDL2-2.0.5/docs/doxyfile
similarity index 100%
rename from jni/SDL2-2.0.5/docs/doxyfile
rename to love/src/jni/SDL2-2.0.5/docs/doxyfile
diff --git a/jni/SDL2-2.0.5/doxygen_warn.txt b/love/src/jni/SDL2-2.0.5/doxygen_warn.txt
similarity index 100%
rename from jni/SDL2-2.0.5/doxygen_warn.txt
rename to love/src/jni/SDL2-2.0.5/doxygen_warn.txt
diff --git a/jni/SDL2-2.0.5/include/SDL.h b/love/src/jni/SDL2-2.0.5/include/SDL.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL.h
rename to love/src/jni/SDL2-2.0.5/include/SDL.h
diff --git a/jni/SDL2-2.0.5/include/SDL_assert.h b/love/src/jni/SDL2-2.0.5/include/SDL_assert.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_assert.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_assert.h
diff --git a/jni/SDL2-2.0.5/include/SDL_atomic.h b/love/src/jni/SDL2-2.0.5/include/SDL_atomic.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_atomic.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_atomic.h
diff --git a/jni/SDL2-2.0.5/include/SDL_audio.h b/love/src/jni/SDL2-2.0.5/include/SDL_audio.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_audio.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_audio.h
diff --git a/jni/SDL2-2.0.5/include/SDL_bits.h b/love/src/jni/SDL2-2.0.5/include/SDL_bits.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_bits.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_bits.h
diff --git a/jni/SDL2-2.0.5/include/SDL_blendmode.h b/love/src/jni/SDL2-2.0.5/include/SDL_blendmode.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_blendmode.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_blendmode.h
diff --git a/jni/SDL2-2.0.5/include/SDL_clipboard.h b/love/src/jni/SDL2-2.0.5/include/SDL_clipboard.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_clipboard.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_clipboard.h
diff --git a/jni/SDL2-2.0.5/include/SDL_config.h b/love/src/jni/SDL2-2.0.5/include/SDL_config.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_config.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_config.h
diff --git a/jni/SDL2-2.0.5/include/SDL_config.h.cmake b/love/src/jni/SDL2-2.0.5/include/SDL_config.h.cmake
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_config.h.cmake
rename to love/src/jni/SDL2-2.0.5/include/SDL_config.h.cmake
diff --git a/jni/SDL2-2.0.5/include/SDL_config.h.in b/love/src/jni/SDL2-2.0.5/include/SDL_config.h.in
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_config.h.in
rename to love/src/jni/SDL2-2.0.5/include/SDL_config.h.in
diff --git a/jni/SDL2-2.0.5/include/SDL_config_android.h b/love/src/jni/SDL2-2.0.5/include/SDL_config_android.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_config_android.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_config_android.h
diff --git a/jni/SDL2-2.0.5/include/SDL_config_iphoneos.h b/love/src/jni/SDL2-2.0.5/include/SDL_config_iphoneos.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_config_iphoneos.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_config_iphoneos.h
diff --git a/jni/SDL2-2.0.5/include/SDL_config_macosx.h b/love/src/jni/SDL2-2.0.5/include/SDL_config_macosx.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_config_macosx.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_config_macosx.h
diff --git a/jni/SDL2-2.0.5/include/SDL_config_minimal.h b/love/src/jni/SDL2-2.0.5/include/SDL_config_minimal.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_config_minimal.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_config_minimal.h
diff --git a/jni/SDL2-2.0.5/include/SDL_config_pandora.h b/love/src/jni/SDL2-2.0.5/include/SDL_config_pandora.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_config_pandora.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_config_pandora.h
diff --git a/jni/SDL2-2.0.5/include/SDL_config_psp.h b/love/src/jni/SDL2-2.0.5/include/SDL_config_psp.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_config_psp.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_config_psp.h
diff --git a/jni/SDL2-2.0.5/include/SDL_config_windows.h b/love/src/jni/SDL2-2.0.5/include/SDL_config_windows.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_config_windows.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_config_windows.h
diff --git a/jni/SDL2-2.0.5/include/SDL_config_winrt.h b/love/src/jni/SDL2-2.0.5/include/SDL_config_winrt.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_config_winrt.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_config_winrt.h
diff --git a/jni/SDL2-2.0.5/include/SDL_config_wiz.h b/love/src/jni/SDL2-2.0.5/include/SDL_config_wiz.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_config_wiz.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_config_wiz.h
diff --git a/jni/SDL2-2.0.5/include/SDL_copying.h b/love/src/jni/SDL2-2.0.5/include/SDL_copying.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_copying.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_copying.h
diff --git a/jni/SDL2-2.0.5/include/SDL_cpuinfo.h b/love/src/jni/SDL2-2.0.5/include/SDL_cpuinfo.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_cpuinfo.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_cpuinfo.h
diff --git a/jni/SDL2-2.0.5/include/SDL_egl.h b/love/src/jni/SDL2-2.0.5/include/SDL_egl.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_egl.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_egl.h
diff --git a/jni/SDL2-2.0.5/include/SDL_endian.h b/love/src/jni/SDL2-2.0.5/include/SDL_endian.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_endian.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_endian.h
diff --git a/jni/SDL2-2.0.5/include/SDL_error.h b/love/src/jni/SDL2-2.0.5/include/SDL_error.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_error.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_error.h
diff --git a/jni/SDL2-2.0.5/include/SDL_events.h b/love/src/jni/SDL2-2.0.5/include/SDL_events.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_events.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_events.h
diff --git a/jni/SDL2-2.0.5/include/SDL_filesystem.h b/love/src/jni/SDL2-2.0.5/include/SDL_filesystem.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_filesystem.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_filesystem.h
diff --git a/jni/SDL2-2.0.5/include/SDL_gamecontroller.h b/love/src/jni/SDL2-2.0.5/include/SDL_gamecontroller.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_gamecontroller.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_gamecontroller.h
diff --git a/jni/SDL2-2.0.5/include/SDL_gesture.h b/love/src/jni/SDL2-2.0.5/include/SDL_gesture.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_gesture.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_gesture.h
diff --git a/jni/SDL2-2.0.5/include/SDL_haptic.h b/love/src/jni/SDL2-2.0.5/include/SDL_haptic.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_haptic.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_haptic.h
diff --git a/jni/SDL2-2.0.5/include/SDL_hints.h b/love/src/jni/SDL2-2.0.5/include/SDL_hints.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_hints.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_hints.h
diff --git a/jni/SDL2-2.0.5/include/SDL_joystick.h b/love/src/jni/SDL2-2.0.5/include/SDL_joystick.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_joystick.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_joystick.h
diff --git a/jni/SDL2-2.0.5/include/SDL_keyboard.h b/love/src/jni/SDL2-2.0.5/include/SDL_keyboard.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_keyboard.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_keyboard.h
diff --git a/jni/SDL2-2.0.5/include/SDL_keycode.h b/love/src/jni/SDL2-2.0.5/include/SDL_keycode.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_keycode.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_keycode.h
diff --git a/jni/SDL2-2.0.5/include/SDL_loadso.h b/love/src/jni/SDL2-2.0.5/include/SDL_loadso.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_loadso.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_loadso.h
diff --git a/jni/SDL2-2.0.5/include/SDL_log.h b/love/src/jni/SDL2-2.0.5/include/SDL_log.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_log.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_log.h
diff --git a/jni/SDL2-2.0.5/include/SDL_main.h b/love/src/jni/SDL2-2.0.5/include/SDL_main.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_main.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_main.h
diff --git a/jni/SDL2-2.0.5/include/SDL_messagebox.h b/love/src/jni/SDL2-2.0.5/include/SDL_messagebox.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_messagebox.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_messagebox.h
diff --git a/jni/SDL2-2.0.5/include/SDL_mouse.h b/love/src/jni/SDL2-2.0.5/include/SDL_mouse.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_mouse.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_mouse.h
diff --git a/jni/SDL2-2.0.5/include/SDL_mutex.h b/love/src/jni/SDL2-2.0.5/include/SDL_mutex.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_mutex.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_mutex.h
diff --git a/jni/SDL2-2.0.5/include/SDL_name.h b/love/src/jni/SDL2-2.0.5/include/SDL_name.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_name.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_name.h
diff --git a/jni/SDL2-2.0.5/include/SDL_opengl.h b/love/src/jni/SDL2-2.0.5/include/SDL_opengl.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_opengl.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_opengl.h
diff --git a/jni/SDL2-2.0.5/include/SDL_opengl_glext.h b/love/src/jni/SDL2-2.0.5/include/SDL_opengl_glext.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_opengl_glext.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_opengl_glext.h
diff --git a/jni/SDL2-2.0.5/include/SDL_opengles.h b/love/src/jni/SDL2-2.0.5/include/SDL_opengles.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_opengles.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_opengles.h
diff --git a/jni/SDL2-2.0.5/include/SDL_opengles2.h b/love/src/jni/SDL2-2.0.5/include/SDL_opengles2.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_opengles2.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_opengles2.h
diff --git a/jni/SDL2-2.0.5/include/SDL_opengles2_gl2.h b/love/src/jni/SDL2-2.0.5/include/SDL_opengles2_gl2.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_opengles2_gl2.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_opengles2_gl2.h
diff --git a/jni/SDL2-2.0.5/include/SDL_opengles2_gl2ext.h b/love/src/jni/SDL2-2.0.5/include/SDL_opengles2_gl2ext.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_opengles2_gl2ext.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_opengles2_gl2ext.h
diff --git a/jni/SDL2-2.0.5/include/SDL_opengles2_gl2platform.h b/love/src/jni/SDL2-2.0.5/include/SDL_opengles2_gl2platform.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_opengles2_gl2platform.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_opengles2_gl2platform.h
diff --git a/jni/SDL2-2.0.5/include/SDL_opengles2_khrplatform.h b/love/src/jni/SDL2-2.0.5/include/SDL_opengles2_khrplatform.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_opengles2_khrplatform.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_opengles2_khrplatform.h
diff --git a/jni/SDL2-2.0.5/include/SDL_pixels.h b/love/src/jni/SDL2-2.0.5/include/SDL_pixels.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_pixels.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_pixels.h
diff --git a/jni/SDL2-2.0.5/include/SDL_platform.h b/love/src/jni/SDL2-2.0.5/include/SDL_platform.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_platform.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_platform.h
diff --git a/jni/SDL2-2.0.5/include/SDL_power.h b/love/src/jni/SDL2-2.0.5/include/SDL_power.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_power.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_power.h
diff --git a/jni/SDL2-2.0.5/include/SDL_quit.h b/love/src/jni/SDL2-2.0.5/include/SDL_quit.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_quit.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_quit.h
diff --git a/jni/SDL2-2.0.5/include/SDL_rect.h b/love/src/jni/SDL2-2.0.5/include/SDL_rect.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_rect.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_rect.h
diff --git a/jni/SDL2-2.0.5/include/SDL_render.h b/love/src/jni/SDL2-2.0.5/include/SDL_render.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_render.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_render.h
diff --git a/jni/SDL2-2.0.5/include/SDL_revision.h b/love/src/jni/SDL2-2.0.5/include/SDL_revision.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_revision.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_revision.h
diff --git a/jni/SDL2-2.0.5/include/SDL_rwops.h b/love/src/jni/SDL2-2.0.5/include/SDL_rwops.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_rwops.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_rwops.h
diff --git a/jni/SDL2-2.0.5/include/SDL_scancode.h b/love/src/jni/SDL2-2.0.5/include/SDL_scancode.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_scancode.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_scancode.h
diff --git a/jni/SDL2-2.0.5/include/SDL_shape.h b/love/src/jni/SDL2-2.0.5/include/SDL_shape.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_shape.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_shape.h
diff --git a/jni/SDL2-2.0.5/include/SDL_stdinc.h b/love/src/jni/SDL2-2.0.5/include/SDL_stdinc.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_stdinc.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_stdinc.h
diff --git a/jni/SDL2-2.0.5/include/SDL_surface.h b/love/src/jni/SDL2-2.0.5/include/SDL_surface.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_surface.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_surface.h
diff --git a/jni/SDL2-2.0.5/include/SDL_system.h b/love/src/jni/SDL2-2.0.5/include/SDL_system.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_system.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_system.h
diff --git a/jni/SDL2-2.0.5/include/SDL_syswm.h b/love/src/jni/SDL2-2.0.5/include/SDL_syswm.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_syswm.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_syswm.h
diff --git a/jni/SDL2-2.0.5/include/SDL_test.h b/love/src/jni/SDL2-2.0.5/include/SDL_test.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_test.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_test.h
diff --git a/jni/SDL2-2.0.5/include/SDL_test_assert.h b/love/src/jni/SDL2-2.0.5/include/SDL_test_assert.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_test_assert.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_test_assert.h
diff --git a/jni/SDL2-2.0.5/include/SDL_test_common.h b/love/src/jni/SDL2-2.0.5/include/SDL_test_common.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_test_common.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_test_common.h
diff --git a/jni/SDL2-2.0.5/include/SDL_test_compare.h b/love/src/jni/SDL2-2.0.5/include/SDL_test_compare.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_test_compare.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_test_compare.h
diff --git a/jni/SDL2-2.0.5/include/SDL_test_crc32.h b/love/src/jni/SDL2-2.0.5/include/SDL_test_crc32.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_test_crc32.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_test_crc32.h
diff --git a/jni/SDL2-2.0.5/include/SDL_test_font.h b/love/src/jni/SDL2-2.0.5/include/SDL_test_font.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_test_font.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_test_font.h
diff --git a/jni/SDL2-2.0.5/include/SDL_test_fuzzer.h b/love/src/jni/SDL2-2.0.5/include/SDL_test_fuzzer.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_test_fuzzer.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_test_fuzzer.h
diff --git a/jni/SDL2-2.0.5/include/SDL_test_harness.h b/love/src/jni/SDL2-2.0.5/include/SDL_test_harness.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_test_harness.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_test_harness.h
diff --git a/jni/SDL2-2.0.5/include/SDL_test_images.h b/love/src/jni/SDL2-2.0.5/include/SDL_test_images.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_test_images.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_test_images.h
diff --git a/jni/SDL2-2.0.5/include/SDL_test_log.h b/love/src/jni/SDL2-2.0.5/include/SDL_test_log.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_test_log.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_test_log.h
diff --git a/jni/SDL2-2.0.5/include/SDL_test_md5.h b/love/src/jni/SDL2-2.0.5/include/SDL_test_md5.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_test_md5.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_test_md5.h
diff --git a/jni/SDL2-2.0.5/include/SDL_test_random.h b/love/src/jni/SDL2-2.0.5/include/SDL_test_random.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_test_random.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_test_random.h
diff --git a/jni/SDL2-2.0.5/include/SDL_thread.h b/love/src/jni/SDL2-2.0.5/include/SDL_thread.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_thread.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_thread.h
diff --git a/jni/SDL2-2.0.5/include/SDL_timer.h b/love/src/jni/SDL2-2.0.5/include/SDL_timer.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_timer.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_timer.h
diff --git a/jni/SDL2-2.0.5/include/SDL_touch.h b/love/src/jni/SDL2-2.0.5/include/SDL_touch.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_touch.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_touch.h
diff --git a/jni/SDL2-2.0.5/include/SDL_types.h b/love/src/jni/SDL2-2.0.5/include/SDL_types.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_types.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_types.h
diff --git a/jni/SDL2-2.0.5/include/SDL_version.h b/love/src/jni/SDL2-2.0.5/include/SDL_version.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_version.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_version.h
diff --git a/jni/SDL2-2.0.5/include/SDL_video.h b/love/src/jni/SDL2-2.0.5/include/SDL_video.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/SDL_video.h
rename to love/src/jni/SDL2-2.0.5/include/SDL_video.h
diff --git a/jni/SDL2-2.0.5/include/begin_code.h b/love/src/jni/SDL2-2.0.5/include/begin_code.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/begin_code.h
rename to love/src/jni/SDL2-2.0.5/include/begin_code.h
diff --git a/jni/SDL2-2.0.5/include/close_code.h b/love/src/jni/SDL2-2.0.5/include/close_code.h
similarity index 100%
rename from jni/SDL2-2.0.5/include/close_code.h
rename to love/src/jni/SDL2-2.0.5/include/close_code.h
diff --git a/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/clean_premake.bat b/love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/clean_premake.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Cygwin/build-scripts/clean_premake.bat
rename to love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/clean_premake.bat
diff --git a/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/cygwin.bat b/love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/cygwin.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Cygwin/build-scripts/cygwin.bat
rename to love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/cygwin.bat
diff --git a/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/make.debug.bat b/love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/make.debug.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Cygwin/build-scripts/make.debug.bat
rename to love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/make.debug.bat
diff --git a/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/make.release.bat b/love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/make.release.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Cygwin/build-scripts/make.release.bat
rename to love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/make.release.bat
diff --git a/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/premake4.exe b/love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/premake4.exe
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Cygwin/build-scripts/premake4.exe
rename to love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/premake4.exe
diff --git a/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/run.tests.debug.bat b/love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/run.tests.debug.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Cygwin/build-scripts/run.tests.debug.bat
rename to love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/run.tests.debug.bat
diff --git a/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/run.tests.release.bat b/love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/run.tests.release.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Cygwin/build-scripts/run.tests.release.bat
rename to love/src/jni/SDL2-2.0.5/premake/Cygwin/build-scripts/run.tests.release.bat
diff --git a/jni/SDL2-2.0.5/premake/Linux/SDL_config_premake.h b/love/src/jni/SDL2-2.0.5/premake/Linux/SDL_config_premake.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Linux/SDL_config_premake.h
rename to love/src/jni/SDL2-2.0.5/premake/Linux/SDL_config_premake.h
diff --git a/jni/SDL2-2.0.5/premake/Linux/build-scripts/clean_premake.sh b/love/src/jni/SDL2-2.0.5/premake/Linux/build-scripts/clean_premake.sh
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Linux/build-scripts/clean_premake.sh
rename to love/src/jni/SDL2-2.0.5/premake/Linux/build-scripts/clean_premake.sh
diff --git a/jni/SDL2-2.0.5/premake/Linux/build-scripts/gmake.sh b/love/src/jni/SDL2-2.0.5/premake/Linux/build-scripts/gmake.sh
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Linux/build-scripts/gmake.sh
rename to love/src/jni/SDL2-2.0.5/premake/Linux/build-scripts/gmake.sh
diff --git a/jni/SDL2-2.0.5/premake/Linux/build-scripts/premake4 b/love/src/jni/SDL2-2.0.5/premake/Linux/build-scripts/premake4
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Linux/build-scripts/premake4
rename to love/src/jni/SDL2-2.0.5/premake/Linux/build-scripts/premake4
diff --git a/jni/SDL2-2.0.5/premake/Linux/build-scripts/run.tests.sh b/love/src/jni/SDL2-2.0.5/premake/Linux/build-scripts/run.tests.sh
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Linux/build-scripts/run.tests.sh
rename to love/src/jni/SDL2-2.0.5/premake/Linux/build-scripts/run.tests.sh
diff --git a/jni/SDL2-2.0.5/premake/MinGW/SDL_config_premake.h b/love/src/jni/SDL2-2.0.5/premake/MinGW/SDL_config_premake.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/MinGW/SDL_config_premake.h
rename to love/src/jni/SDL2-2.0.5/premake/MinGW/SDL_config_premake.h
diff --git a/jni/SDL2-2.0.5/premake/MinGW/build-scripts/clean_premake.bat b/love/src/jni/SDL2-2.0.5/premake/MinGW/build-scripts/clean_premake.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/MinGW/build-scripts/clean_premake.bat
rename to love/src/jni/SDL2-2.0.5/premake/MinGW/build-scripts/clean_premake.bat
diff --git a/jni/SDL2-2.0.5/premake/MinGW/build-scripts/mingw.bat b/love/src/jni/SDL2-2.0.5/premake/MinGW/build-scripts/mingw.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/MinGW/build-scripts/mingw.bat
rename to love/src/jni/SDL2-2.0.5/premake/MinGW/build-scripts/mingw.bat
diff --git a/jni/SDL2-2.0.5/premake/MinGW/build-scripts/premake4.exe b/love/src/jni/SDL2-2.0.5/premake/MinGW/build-scripts/premake4.exe
similarity index 100%
rename from jni/SDL2-2.0.5/premake/MinGW/build-scripts/premake4.exe
rename to love/src/jni/SDL2-2.0.5/premake/MinGW/build-scripts/premake4.exe
diff --git a/jni/SDL2-2.0.5/premake/MinGW/build-scripts/run.tests.bat b/love/src/jni/SDL2-2.0.5/premake/MinGW/build-scripts/run.tests.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/MinGW/build-scripts/run.tests.bat
rename to love/src/jni/SDL2-2.0.5/premake/MinGW/build-scripts/run.tests.bat
diff --git a/jni/SDL2-2.0.5/premake/README-cygwin.txt b/love/src/jni/SDL2-2.0.5/premake/README-cygwin.txt
similarity index 100%
rename from jni/SDL2-2.0.5/premake/README-cygwin.txt
rename to love/src/jni/SDL2-2.0.5/premake/README-cygwin.txt
diff --git a/jni/SDL2-2.0.5/premake/README-ios.txt b/love/src/jni/SDL2-2.0.5/premake/README-ios.txt
similarity index 100%
rename from jni/SDL2-2.0.5/premake/README-ios.txt
rename to love/src/jni/SDL2-2.0.5/premake/README-ios.txt
diff --git a/jni/SDL2-2.0.5/premake/README-linux.txt b/love/src/jni/SDL2-2.0.5/premake/README-linux.txt
similarity index 100%
rename from jni/SDL2-2.0.5/premake/README-linux.txt
rename to love/src/jni/SDL2-2.0.5/premake/README-linux.txt
diff --git a/jni/SDL2-2.0.5/premake/README-macosx.txt b/love/src/jni/SDL2-2.0.5/premake/README-macosx.txt
similarity index 100%
rename from jni/SDL2-2.0.5/premake/README-macosx.txt
rename to love/src/jni/SDL2-2.0.5/premake/README-macosx.txt
diff --git a/jni/SDL2-2.0.5/premake/README-mingw.txt b/love/src/jni/SDL2-2.0.5/premake/README-mingw.txt
similarity index 100%
rename from jni/SDL2-2.0.5/premake/README-mingw.txt
rename to love/src/jni/SDL2-2.0.5/premake/README-mingw.txt
diff --git a/jni/SDL2-2.0.5/premake/README-windows.txt b/love/src/jni/SDL2-2.0.5/premake/README-windows.txt
similarity index 100%
rename from jni/SDL2-2.0.5/premake/README-windows.txt
rename to love/src/jni/SDL2-2.0.5/premake/README-windows.txt
diff --git a/jni/SDL2-2.0.5/premake/README.txt b/love/src/jni/SDL2-2.0.5/premake/README.txt
similarity index 100%
rename from jni/SDL2-2.0.5/premake/README.txt
rename to love/src/jni/SDL2-2.0.5/premake/README.txt
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL.sln b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL.sln
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL.sln
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL.sln
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL2/SDL2.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL2/SDL2.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL2/SDL2.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL2/SDL2.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL2main/SDL2main.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL2main/SDL2main.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL2main/SDL2main.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL2main/SDL2main.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL2test/SDL2test.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL2test/SDL2test.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL2test/SDL2test.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL2test/SDL2test.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL_config_premake.h b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL_config_premake.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL_config_premake.h
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/SDL_config_premake.h
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/checkkeys/checkkeys.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/checkkeys/checkkeys.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/checkkeys/checkkeys.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/checkkeys/checkkeys.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/loopwave/loopwave.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/loopwave/loopwave.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/loopwave/loopwave.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/loopwave/loopwave.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testatomic/testatomic.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testatomic/testatomic.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testatomic/testatomic.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testatomic/testatomic.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testaudioinfo/testaudioinfo.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testaudioinfo/testaudioinfo.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testaudioinfo/testaudioinfo.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testaudioinfo/testaudioinfo.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testautomation/testautomation.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testautomation/testautomation.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testautomation/testautomation.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testautomation/testautomation.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testchessboard/testchessboard.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testchessboard/testchessboard.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testchessboard/testchessboard.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testchessboard/testchessboard.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testdraw2/testdraw2.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testdraw2/testdraw2.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testdraw2/testdraw2.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testdraw2/testdraw2.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testerror/testerror.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testerror/testerror.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testerror/testerror.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testerror/testerror.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testfile/testfile.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testfile/testfile.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testfile/testfile.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testfile/testfile.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testfilesystem/testfilesystem.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testfilesystem/testfilesystem.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testfilesystem/testfilesystem.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testfilesystem/testfilesystem.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgamecontroller/testgamecontroller.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgamecontroller/testgamecontroller.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgamecontroller/testgamecontroller.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgamecontroller/testgamecontroller.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgesture/testgesture.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgesture/testgesture.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgesture/testgesture.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgesture/testgesture.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgl2/testgl2.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgl2/testgl2.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgl2/testgl2.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgl2/testgl2.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgles/testgles.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgles/testgles.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgles/testgles.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testgles/testgles.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testhaptic/testhaptic.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testhaptic/testhaptic.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testhaptic/testhaptic.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testhaptic/testhaptic.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testiconv/testiconv.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testiconv/testiconv.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testiconv/testiconv.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testiconv/testiconv.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testime/testime.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testime/testime.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testime/testime.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testime/testime.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testjoystick/testjoystick.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testjoystick/testjoystick.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testjoystick/testjoystick.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testjoystick/testjoystick.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testkeys/testkeys.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testkeys/testkeys.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testkeys/testkeys.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testkeys/testkeys.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testloadso/testloadso.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testloadso/testloadso.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testloadso/testloadso.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testloadso/testloadso.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testlock/testlock.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testlock/testlock.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testlock/testlock.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testlock/testlock.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testmessage/testmessage.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testmessage/testmessage.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testmessage/testmessage.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testmessage/testmessage.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testmultiaudio/testmultiaudio.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testmultiaudio/testmultiaudio.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testmultiaudio/testmultiaudio.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testmultiaudio/testmultiaudio.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testnative/testnative.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testnative/testnative.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testnative/testnative.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testnative/testnative.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testoverlay2/testoverlay2.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testoverlay2/testoverlay2.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testoverlay2/testoverlay2.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testoverlay2/testoverlay2.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testplatform/testplatform.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testplatform/testplatform.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testplatform/testplatform.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testplatform/testplatform.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testpower/testpower.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testpower/testpower.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testpower/testpower.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testpower/testpower.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrelative/testrelative.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrelative/testrelative.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrelative/testrelative.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrelative/testrelative.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrendercopyex/testrendercopyex.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrendercopyex/testrendercopyex.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrendercopyex/testrendercopyex.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrendercopyex/testrendercopyex.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrendertarget/testrendertarget.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrendertarget/testrendertarget.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrendertarget/testrendertarget.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrendertarget/testrendertarget.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testresample/testresample.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testresample/testresample.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testresample/testresample.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testresample/testresample.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrumble/testrumble.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrumble/testrumble.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrumble/testrumble.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testrumble/testrumble.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testscale/testscale.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testscale/testscale.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testscale/testscale.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testscale/testscale.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testsem/testsem.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testsem/testsem.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testsem/testsem.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testsem/testsem.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testshader/testshader.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testshader/testshader.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testshader/testshader.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testshader/testshader.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testshape/testshape.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testshape/testshape.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testshape/testshape.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testshape/testshape.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testsprite2/testsprite2.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testsprite2/testsprite2.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testsprite2/testsprite2.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testsprite2/testsprite2.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testspriteminimal/testspriteminimal.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testspriteminimal/testspriteminimal.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testspriteminimal/testspriteminimal.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testspriteminimal/testspriteminimal.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/teststreaming/teststreaming.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/teststreaming/teststreaming.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/teststreaming/teststreaming.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/teststreaming/teststreaming.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testthread/testthread.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testthread/testthread.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testthread/testthread.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testthread/testthread.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testtimer/testtimer.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testtimer/testtimer.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testtimer/testtimer.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testtimer/testtimer.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testver/testver.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testver/testver.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testver/testver.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testver/testver.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testwm2/testwm2.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testwm2/testwm2.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testwm2/testwm2.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/testwm2/testwm2.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/torturethread/torturethread.vcproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/torturethread/torturethread.vcproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/torturethread/torturethread.vcproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2008/tests/torturethread/torturethread.vcproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL.sln b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL.sln
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL.sln
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL.sln
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2/SDL2.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2/SDL2.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2/SDL2.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2/SDL2.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2/SDL2.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2/SDL2.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2/SDL2.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2/SDL2.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2main/SDL2main.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2main/SDL2main.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2main/SDL2main.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2main/SDL2main.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2main/SDL2main.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2main/SDL2main.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2main/SDL2main.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2main/SDL2main.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2test/SDL2test.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2test/SDL2test.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2test/SDL2test.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2test/SDL2test.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2test/SDL2test.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2test/SDL2test.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2test/SDL2test.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL2test/SDL2test.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL_config_premake.h b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL_config_premake.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL_config_premake.h
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/SDL_config_premake.h
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/checkkeys/checkkeys.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/checkkeys/checkkeys.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/checkkeys/checkkeys.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/checkkeys/checkkeys.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/checkkeys/checkkeys.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/checkkeys/checkkeys.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/checkkeys/checkkeys.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/checkkeys/checkkeys.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/loopwave/loopwave.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/loopwave/loopwave.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/loopwave/loopwave.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/loopwave/loopwave.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/loopwave/loopwave.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/loopwave/loopwave.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/loopwave/loopwave.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/loopwave/loopwave.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testatomic/testatomic.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testatomic/testatomic.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testatomic/testatomic.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testatomic/testatomic.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testatomic/testatomic.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testatomic/testatomic.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testatomic/testatomic.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testatomic/testatomic.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testaudioinfo/testaudioinfo.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testaudioinfo/testaudioinfo.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testaudioinfo/testaudioinfo.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testaudioinfo/testaudioinfo.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testaudioinfo/testaudioinfo.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testaudioinfo/testaudioinfo.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testaudioinfo/testaudioinfo.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testaudioinfo/testaudioinfo.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testautomation/testautomation.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testautomation/testautomation.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testautomation/testautomation.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testautomation/testautomation.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testautomation/testautomation.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testautomation/testautomation.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testautomation/testautomation.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testautomation/testautomation.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testchessboard/testchessboard.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testchessboard/testchessboard.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testchessboard/testchessboard.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testchessboard/testchessboard.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testchessboard/testchessboard.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testchessboard/testchessboard.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testchessboard/testchessboard.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testchessboard/testchessboard.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testdraw2/testdraw2.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testdraw2/testdraw2.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testdraw2/testdraw2.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testdraw2/testdraw2.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testdraw2/testdraw2.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testdraw2/testdraw2.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testdraw2/testdraw2.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testdraw2/testdraw2.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testerror/testerror.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testerror/testerror.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testerror/testerror.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testerror/testerror.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testerror/testerror.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testerror/testerror.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testerror/testerror.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testerror/testerror.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfile/testfile.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfile/testfile.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfile/testfile.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfile/testfile.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfile/testfile.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfile/testfile.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfile/testfile.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfile/testfile.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfilesystem/testfilesystem.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfilesystem/testfilesystem.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfilesystem/testfilesystem.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfilesystem/testfilesystem.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfilesystem/testfilesystem.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfilesystem/testfilesystem.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfilesystem/testfilesystem.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testfilesystem/testfilesystem.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgamecontroller/testgamecontroller.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgamecontroller/testgamecontroller.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgamecontroller/testgamecontroller.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgamecontroller/testgamecontroller.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgamecontroller/testgamecontroller.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgamecontroller/testgamecontroller.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgamecontroller/testgamecontroller.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgamecontroller/testgamecontroller.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgesture/testgesture.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgesture/testgesture.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgesture/testgesture.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgesture/testgesture.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgesture/testgesture.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgesture/testgesture.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgesture/testgesture.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgesture/testgesture.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgl2/testgl2.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgl2/testgl2.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgl2/testgl2.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgl2/testgl2.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgl2/testgl2.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgl2/testgl2.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgl2/testgl2.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgl2/testgl2.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgles/testgles.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgles/testgles.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgles/testgles.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgles/testgles.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgles/testgles.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgles/testgles.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgles/testgles.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testgles/testgles.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testhaptic/testhaptic.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testhaptic/testhaptic.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testhaptic/testhaptic.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testhaptic/testhaptic.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testhaptic/testhaptic.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testhaptic/testhaptic.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testhaptic/testhaptic.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testhaptic/testhaptic.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testiconv/testiconv.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testiconv/testiconv.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testiconv/testiconv.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testiconv/testiconv.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testiconv/testiconv.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testiconv/testiconv.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testiconv/testiconv.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testiconv/testiconv.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testime/testime.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testime/testime.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testime/testime.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testime/testime.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testime/testime.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testime/testime.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testime/testime.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testime/testime.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testjoystick/testjoystick.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testjoystick/testjoystick.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testjoystick/testjoystick.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testjoystick/testjoystick.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testjoystick/testjoystick.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testjoystick/testjoystick.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testjoystick/testjoystick.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testjoystick/testjoystick.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testkeys/testkeys.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testkeys/testkeys.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testkeys/testkeys.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testkeys/testkeys.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testkeys/testkeys.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testkeys/testkeys.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testkeys/testkeys.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testkeys/testkeys.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testloadso/testloadso.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testloadso/testloadso.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testloadso/testloadso.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testloadso/testloadso.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testloadso/testloadso.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testloadso/testloadso.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testloadso/testloadso.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testloadso/testloadso.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testlock/testlock.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testlock/testlock.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testlock/testlock.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testlock/testlock.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testlock/testlock.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testlock/testlock.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testlock/testlock.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testlock/testlock.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmessage/testmessage.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmessage/testmessage.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmessage/testmessage.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmessage/testmessage.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmessage/testmessage.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmessage/testmessage.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmessage/testmessage.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmessage/testmessage.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmultiaudio/testmultiaudio.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmultiaudio/testmultiaudio.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmultiaudio/testmultiaudio.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmultiaudio/testmultiaudio.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmultiaudio/testmultiaudio.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmultiaudio/testmultiaudio.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmultiaudio/testmultiaudio.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testmultiaudio/testmultiaudio.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testnative/testnative.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testnative/testnative.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testnative/testnative.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testnative/testnative.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testnative/testnative.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testnative/testnative.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testnative/testnative.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testnative/testnative.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testoverlay2/testoverlay2.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testoverlay2/testoverlay2.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testoverlay2/testoverlay2.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testoverlay2/testoverlay2.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testoverlay2/testoverlay2.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testoverlay2/testoverlay2.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testoverlay2/testoverlay2.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testoverlay2/testoverlay2.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testplatform/testplatform.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testplatform/testplatform.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testplatform/testplatform.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testplatform/testplatform.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testplatform/testplatform.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testplatform/testplatform.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testplatform/testplatform.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testplatform/testplatform.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testpower/testpower.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testpower/testpower.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testpower/testpower.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testpower/testpower.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testpower/testpower.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testpower/testpower.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testpower/testpower.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testpower/testpower.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrelative/testrelative.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrelative/testrelative.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrelative/testrelative.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrelative/testrelative.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrelative/testrelative.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrelative/testrelative.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrelative/testrelative.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrelative/testrelative.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendercopyex/testrendercopyex.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendercopyex/testrendercopyex.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendercopyex/testrendercopyex.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendercopyex/testrendercopyex.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendercopyex/testrendercopyex.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendercopyex/testrendercopyex.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendercopyex/testrendercopyex.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendercopyex/testrendercopyex.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendertarget/testrendertarget.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendertarget/testrendertarget.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendertarget/testrendertarget.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendertarget/testrendertarget.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendertarget/testrendertarget.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendertarget/testrendertarget.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendertarget/testrendertarget.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrendertarget/testrendertarget.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testresample/testresample.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testresample/testresample.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testresample/testresample.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testresample/testresample.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testresample/testresample.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testresample/testresample.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testresample/testresample.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testresample/testresample.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrumble/testrumble.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrumble/testrumble.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrumble/testrumble.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrumble/testrumble.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrumble/testrumble.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrumble/testrumble.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrumble/testrumble.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testrumble/testrumble.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testscale/testscale.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testscale/testscale.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testscale/testscale.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testscale/testscale.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testscale/testscale.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testscale/testscale.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testscale/testscale.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testscale/testscale.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsem/testsem.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsem/testsem.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsem/testsem.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsem/testsem.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsem/testsem.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsem/testsem.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsem/testsem.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsem/testsem.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshader/testshader.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshader/testshader.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshader/testshader.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshader/testshader.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshader/testshader.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshader/testshader.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshader/testshader.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshader/testshader.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshape/testshape.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshape/testshape.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshape/testshape.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshape/testshape.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshape/testshape.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshape/testshape.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshape/testshape.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testshape/testshape.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsprite2/testsprite2.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsprite2/testsprite2.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsprite2/testsprite2.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsprite2/testsprite2.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsprite2/testsprite2.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsprite2/testsprite2.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsprite2/testsprite2.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testsprite2/testsprite2.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testspriteminimal/testspriteminimal.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testspriteminimal/testspriteminimal.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testspriteminimal/testspriteminimal.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testspriteminimal/testspriteminimal.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testspriteminimal/testspriteminimal.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testspriteminimal/testspriteminimal.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testspriteminimal/testspriteminimal.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testspriteminimal/testspriteminimal.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/teststreaming/teststreaming.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/teststreaming/teststreaming.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/teststreaming/teststreaming.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/teststreaming/teststreaming.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/teststreaming/teststreaming.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/teststreaming/teststreaming.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/teststreaming/teststreaming.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/teststreaming/teststreaming.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testthread/testthread.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testthread/testthread.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testthread/testthread.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testthread/testthread.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testthread/testthread.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testthread/testthread.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testthread/testthread.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testthread/testthread.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testtimer/testtimer.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testtimer/testtimer.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testtimer/testtimer.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testtimer/testtimer.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testtimer/testtimer.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testtimer/testtimer.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testtimer/testtimer.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testtimer/testtimer.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testver/testver.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testver/testver.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testver/testver.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testver/testver.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testver/testver.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testver/testver.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testver/testver.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testver/testver.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testwm2/testwm2.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testwm2/testwm2.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testwm2/testwm2.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testwm2/testwm2.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testwm2/testwm2.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testwm2/testwm2.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testwm2/testwm2.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/testwm2/testwm2.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/torturethread/torturethread.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/torturethread/torturethread.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/torturethread/torturethread.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/torturethread/torturethread.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/torturethread/torturethread.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/torturethread/torturethread.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/torturethread/torturethread.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2010/tests/torturethread/torturethread.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL.sln b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL.sln
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL.sln
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL.sln
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2/SDL2.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2/SDL2.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2/SDL2.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2/SDL2.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2/SDL2.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2/SDL2.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2/SDL2.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2/SDL2.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2main/SDL2main.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2main/SDL2main.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2main/SDL2main.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2main/SDL2main.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2main/SDL2main.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2main/SDL2main.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2main/SDL2main.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2main/SDL2main.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2test/SDL2test.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2test/SDL2test.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2test/SDL2test.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2test/SDL2test.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2test/SDL2test.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2test/SDL2test.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2test/SDL2test.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL2test/SDL2test.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL_config_premake.h b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL_config_premake.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL_config_premake.h
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/SDL_config_premake.h
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/checkkeys/checkkeys.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/checkkeys/checkkeys.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/checkkeys/checkkeys.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/checkkeys/checkkeys.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/checkkeys/checkkeys.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/checkkeys/checkkeys.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/checkkeys/checkkeys.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/checkkeys/checkkeys.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/loopwave/loopwave.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/loopwave/loopwave.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/loopwave/loopwave.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/loopwave/loopwave.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/loopwave/loopwave.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/loopwave/loopwave.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/loopwave/loopwave.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/loopwave/loopwave.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testatomic/testatomic.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testatomic/testatomic.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testatomic/testatomic.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testatomic/testatomic.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testatomic/testatomic.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testatomic/testatomic.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testatomic/testatomic.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testatomic/testatomic.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testaudioinfo/testaudioinfo.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testaudioinfo/testaudioinfo.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testaudioinfo/testaudioinfo.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testaudioinfo/testaudioinfo.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testaudioinfo/testaudioinfo.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testaudioinfo/testaudioinfo.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testaudioinfo/testaudioinfo.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testaudioinfo/testaudioinfo.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testautomation/testautomation.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testautomation/testautomation.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testautomation/testautomation.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testautomation/testautomation.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testautomation/testautomation.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testautomation/testautomation.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testautomation/testautomation.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testautomation/testautomation.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testchessboard/testchessboard.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testchessboard/testchessboard.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testchessboard/testchessboard.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testchessboard/testchessboard.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testchessboard/testchessboard.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testchessboard/testchessboard.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testchessboard/testchessboard.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testchessboard/testchessboard.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testdraw2/testdraw2.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testdraw2/testdraw2.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testdraw2/testdraw2.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testdraw2/testdraw2.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testdraw2/testdraw2.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testdraw2/testdraw2.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testdraw2/testdraw2.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testdraw2/testdraw2.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testerror/testerror.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testerror/testerror.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testerror/testerror.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testerror/testerror.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testerror/testerror.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testerror/testerror.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testerror/testerror.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testerror/testerror.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfile/testfile.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfile/testfile.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfile/testfile.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfile/testfile.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfile/testfile.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfile/testfile.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfile/testfile.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfile/testfile.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfilesystem/testfilesystem.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfilesystem/testfilesystem.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfilesystem/testfilesystem.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfilesystem/testfilesystem.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfilesystem/testfilesystem.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfilesystem/testfilesystem.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfilesystem/testfilesystem.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testfilesystem/testfilesystem.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgamecontroller/testgamecontroller.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgamecontroller/testgamecontroller.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgamecontroller/testgamecontroller.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgamecontroller/testgamecontroller.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgamecontroller/testgamecontroller.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgamecontroller/testgamecontroller.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgamecontroller/testgamecontroller.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgamecontroller/testgamecontroller.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgesture/testgesture.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgesture/testgesture.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgesture/testgesture.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgesture/testgesture.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgesture/testgesture.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgesture/testgesture.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgesture/testgesture.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgesture/testgesture.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgl2/testgl2.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgl2/testgl2.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgl2/testgl2.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgl2/testgl2.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgl2/testgl2.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgl2/testgl2.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgl2/testgl2.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgl2/testgl2.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgles/testgles.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgles/testgles.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgles/testgles.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgles/testgles.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgles/testgles.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgles/testgles.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgles/testgles.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testgles/testgles.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testhaptic/testhaptic.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testhaptic/testhaptic.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testhaptic/testhaptic.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testhaptic/testhaptic.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testhaptic/testhaptic.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testhaptic/testhaptic.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testhaptic/testhaptic.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testhaptic/testhaptic.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testiconv/testiconv.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testiconv/testiconv.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testiconv/testiconv.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testiconv/testiconv.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testiconv/testiconv.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testiconv/testiconv.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testiconv/testiconv.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testiconv/testiconv.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testime/testime.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testime/testime.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testime/testime.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testime/testime.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testime/testime.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testime/testime.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testime/testime.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testime/testime.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testjoystick/testjoystick.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testjoystick/testjoystick.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testjoystick/testjoystick.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testjoystick/testjoystick.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testjoystick/testjoystick.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testjoystick/testjoystick.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testjoystick/testjoystick.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testjoystick/testjoystick.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testkeys/testkeys.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testkeys/testkeys.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testkeys/testkeys.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testkeys/testkeys.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testkeys/testkeys.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testkeys/testkeys.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testkeys/testkeys.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testkeys/testkeys.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testloadso/testloadso.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testloadso/testloadso.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testloadso/testloadso.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testloadso/testloadso.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testloadso/testloadso.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testloadso/testloadso.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testloadso/testloadso.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testloadso/testloadso.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testlock/testlock.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testlock/testlock.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testlock/testlock.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testlock/testlock.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testlock/testlock.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testlock/testlock.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testlock/testlock.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testlock/testlock.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmessage/testmessage.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmessage/testmessage.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmessage/testmessage.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmessage/testmessage.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmessage/testmessage.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmessage/testmessage.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmessage/testmessage.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmessage/testmessage.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmultiaudio/testmultiaudio.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmultiaudio/testmultiaudio.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmultiaudio/testmultiaudio.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmultiaudio/testmultiaudio.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmultiaudio/testmultiaudio.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmultiaudio/testmultiaudio.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmultiaudio/testmultiaudio.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testmultiaudio/testmultiaudio.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testnative/testnative.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testnative/testnative.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testnative/testnative.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testnative/testnative.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testnative/testnative.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testnative/testnative.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testnative/testnative.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testnative/testnative.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testoverlay2/testoverlay2.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testoverlay2/testoverlay2.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testoverlay2/testoverlay2.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testoverlay2/testoverlay2.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testoverlay2/testoverlay2.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testoverlay2/testoverlay2.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testoverlay2/testoverlay2.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testoverlay2/testoverlay2.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testplatform/testplatform.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testplatform/testplatform.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testplatform/testplatform.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testplatform/testplatform.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testplatform/testplatform.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testplatform/testplatform.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testplatform/testplatform.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testplatform/testplatform.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testpower/testpower.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testpower/testpower.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testpower/testpower.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testpower/testpower.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testpower/testpower.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testpower/testpower.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testpower/testpower.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testpower/testpower.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrelative/testrelative.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrelative/testrelative.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrelative/testrelative.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrelative/testrelative.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrelative/testrelative.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrelative/testrelative.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrelative/testrelative.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrelative/testrelative.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendercopyex/testrendercopyex.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendercopyex/testrendercopyex.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendercopyex/testrendercopyex.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendercopyex/testrendercopyex.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendercopyex/testrendercopyex.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendercopyex/testrendercopyex.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendercopyex/testrendercopyex.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendercopyex/testrendercopyex.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendertarget/testrendertarget.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendertarget/testrendertarget.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendertarget/testrendertarget.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendertarget/testrendertarget.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendertarget/testrendertarget.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendertarget/testrendertarget.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendertarget/testrendertarget.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrendertarget/testrendertarget.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testresample/testresample.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testresample/testresample.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testresample/testresample.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testresample/testresample.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testresample/testresample.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testresample/testresample.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testresample/testresample.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testresample/testresample.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrumble/testrumble.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrumble/testrumble.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrumble/testrumble.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrumble/testrumble.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrumble/testrumble.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrumble/testrumble.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrumble/testrumble.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testrumble/testrumble.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testscale/testscale.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testscale/testscale.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testscale/testscale.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testscale/testscale.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testscale/testscale.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testscale/testscale.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testscale/testscale.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testscale/testscale.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsem/testsem.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsem/testsem.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsem/testsem.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsem/testsem.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsem/testsem.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsem/testsem.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsem/testsem.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsem/testsem.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshader/testshader.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshader/testshader.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshader/testshader.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshader/testshader.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshader/testshader.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshader/testshader.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshader/testshader.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshader/testshader.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshape/testshape.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshape/testshape.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshape/testshape.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshape/testshape.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshape/testshape.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshape/testshape.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshape/testshape.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testshape/testshape.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsprite2/testsprite2.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsprite2/testsprite2.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsprite2/testsprite2.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsprite2/testsprite2.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsprite2/testsprite2.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsprite2/testsprite2.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsprite2/testsprite2.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testsprite2/testsprite2.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testspriteminimal/testspriteminimal.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testspriteminimal/testspriteminimal.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testspriteminimal/testspriteminimal.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testspriteminimal/testspriteminimal.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testspriteminimal/testspriteminimal.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testspriteminimal/testspriteminimal.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testspriteminimal/testspriteminimal.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testspriteminimal/testspriteminimal.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/teststreaming/teststreaming.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/teststreaming/teststreaming.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/teststreaming/teststreaming.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/teststreaming/teststreaming.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/teststreaming/teststreaming.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/teststreaming/teststreaming.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/teststreaming/teststreaming.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/teststreaming/teststreaming.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testthread/testthread.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testthread/testthread.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testthread/testthread.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testthread/testthread.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testthread/testthread.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testthread/testthread.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testthread/testthread.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testthread/testthread.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testtimer/testtimer.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testtimer/testtimer.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testtimer/testtimer.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testtimer/testtimer.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testtimer/testtimer.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testtimer/testtimer.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testtimer/testtimer.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testtimer/testtimer.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testver/testver.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testver/testver.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testver/testver.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testver/testver.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testver/testver.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testver/testver.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testver/testver.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testver/testver.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testwm2/testwm2.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testwm2/testwm2.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testwm2/testwm2.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testwm2/testwm2.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testwm2/testwm2.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testwm2/testwm2.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testwm2/testwm2.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/testwm2/testwm2.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/torturethread/torturethread.vcxproj b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/torturethread/torturethread.vcxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/torturethread/torturethread.vcxproj
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/torturethread/torturethread.vcxproj
diff --git a/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/torturethread/torturethread.vcxproj.filters b/love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/torturethread/torturethread.vcxproj.filters
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/torturethread/torturethread.vcxproj.filters
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/VS2012/tests/torturethread/torturethread.vcxproj.filters
diff --git a/jni/SDL2-2.0.5/premake/VisualC/build-scripts/build.all.vs2010.bat b/love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/build.all.vs2010.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/build-scripts/build.all.vs2010.bat
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/build.all.vs2010.bat
diff --git a/jni/SDL2-2.0.5/premake/VisualC/build-scripts/check.bin.compatibility.vs2010.bat b/love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/check.bin.compatibility.vs2010.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/build-scripts/check.bin.compatibility.vs2010.bat
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/check.bin.compatibility.vs2010.bat
diff --git a/jni/SDL2-2.0.5/premake/VisualC/build-scripts/clean_premake.bat b/love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/clean_premake.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/build-scripts/clean_premake.bat
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/clean_premake.bat
diff --git a/jni/SDL2-2.0.5/premake/VisualC/build-scripts/generate.all.bat b/love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/generate.all.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/build-scripts/generate.all.bat
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/generate.all.bat
diff --git a/jni/SDL2-2.0.5/premake/VisualC/build-scripts/premake4.exe b/love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/premake4.exe
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/build-scripts/premake4.exe
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/premake4.exe
diff --git a/jni/SDL2-2.0.5/premake/VisualC/build-scripts/run.tests.vs2010.bat b/love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/run.tests.vs2010.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/build-scripts/run.tests.vs2010.bat
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/run.tests.vs2010.bat
diff --git a/jni/SDL2-2.0.5/premake/VisualC/build-scripts/vs2008.bat b/love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/vs2008.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/build-scripts/vs2008.bat
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/vs2008.bat
diff --git a/jni/SDL2-2.0.5/premake/VisualC/build-scripts/vs2010.bat b/love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/vs2010.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/build-scripts/vs2010.bat
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/vs2010.bat
diff --git a/jni/SDL2-2.0.5/premake/VisualC/build-scripts/vs2012.bat b/love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/vs2012.bat
similarity index 100%
rename from jni/SDL2-2.0.5/premake/VisualC/build-scripts/vs2012.bat
rename to love/src/jni/SDL2-2.0.5/premake/VisualC/build-scripts/vs2012.bat
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/accelerometer/accelerometer.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/accelerometer/accelerometer.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/accelerometer/accelerometer.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/accelerometer/accelerometer.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/fireworks/fireworks.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/fireworks/fireworks.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/fireworks/fireworks.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/fireworks/fireworks.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/happy/happy.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/happy/happy.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/happy/happy.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/happy/happy.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/keyboard/keyboard.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/keyboard/keyboard.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/keyboard/keyboard.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/keyboard/keyboard.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/mixer/mixer.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/mixer/mixer.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/mixer/mixer.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/mixer/mixer.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/rectangles/rectangles.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/rectangles/rectangles.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/rectangles/rectangles.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/rectangles/rectangles.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/touch/touch.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/touch/touch.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/touch/touch.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/Demos/touch/touch.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL.xcworkspace/contents.xcworkspacedata b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL.xcworkspace/contents.xcworkspacedata
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/SDL.xcworkspace/contents.xcworkspacedata
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL.xcworkspace/contents.xcworkspacedata
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL2/SDL2.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL2/SDL2.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/SDL2/SDL2.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL2/SDL2.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL2main/SDL2main.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL2main/SDL2main.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/SDL2main/SDL2main.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL2main/SDL2main.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL2test/SDL2test.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL2test/SDL2test.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/SDL2test/SDL2test.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL2test/SDL2test.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL_config_premake.h b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL_config_premake.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/SDL_config_premake.h
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/SDL_config_premake.h
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/clean_premake.command b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/clean_premake.command
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/clean_premake.command
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/clean_premake.command
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/premake4 b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/premake4
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/premake4
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/premake4
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/xcode3.command b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/xcode3.command
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/xcode3.command
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/xcode3.command
diff --git a/jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/xcode4.command b/love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/xcode4.command
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/xcode4.command
rename to love/src/jni/SDL2-2.0.5/premake/Xcode-iOS/build-scripts/xcode4.command
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL2/SDL2.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL2/SDL2.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL2/SDL2.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL2/SDL2.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL2main/SDL2main.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL2main/SDL2main.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL2main/SDL2main.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL2main/SDL2main.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL2test/SDL2test.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL2test/SDL2test.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL2test/SDL2test.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL2test/SDL2test.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL_config_premake.h b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL_config_premake.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL_config_premake.h
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/SDL_config_premake.h
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/loopwave/loopwave.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/loopwave/loopwave.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/loopwave/loopwave.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/loopwave/loopwave.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testatomic/testatomic.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testatomic/testatomic.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testatomic/testatomic.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testatomic/testatomic.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testautomation/testautomation.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testautomation/testautomation.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testautomation/testautomation.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testautomation/testautomation.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testerror/testerror.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testerror/testerror.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testerror/testerror.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testerror/testerror.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testfile/testfile.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testfile/testfile.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testfile/testfile.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testfile/testfile.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgesture/testgesture.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgesture/testgesture.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgesture/testgesture.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgesture/testgesture.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgl2/testgl2.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgl2/testgl2.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgl2/testgl2.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgl2/testgl2.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgles/testgles.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgles/testgles.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgles/testgles.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testgles/testgles.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testiconv/testiconv.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testiconv/testiconv.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testiconv/testiconv.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testiconv/testiconv.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testime/testime.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testime/testime.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testime/testime.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testime/testime.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testkeys/testkeys.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testkeys/testkeys.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testkeys/testkeys.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testkeys/testkeys.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testloadso/testloadso.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testloadso/testloadso.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testloadso/testloadso.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testloadso/testloadso.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testlock/testlock.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testlock/testlock.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testlock/testlock.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testlock/testlock.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testmessage/testmessage.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testmessage/testmessage.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testmessage/testmessage.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testmessage/testmessage.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testnative/testnative.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testnative/testnative.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testnative/testnative.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testnative/testnative.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testplatform/testplatform.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testplatform/testplatform.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testplatform/testplatform.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testplatform/testplatform.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testpower/testpower.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testpower/testpower.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testpower/testpower.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testpower/testpower.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrelative/testrelative.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrelative/testrelative.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrelative/testrelative.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrelative/testrelative.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testresample/testresample.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testresample/testresample.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testresample/testresample.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testresample/testresample.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrumble/testrumble.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrumble/testrumble.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrumble/testrumble.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testrumble/testrumble.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testscale/testscale.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testscale/testscale.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testscale/testscale.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testscale/testscale.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testsem/testsem.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testsem/testsem.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testsem/testsem.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testsem/testsem.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testshader/testshader.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testshader/testshader.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testshader/testshader.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testshader/testshader.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testshape/testshape.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testshape/testshape.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testshape/testshape.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testshape/testshape.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testthread/testthread.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testthread/testthread.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testthread/testthread.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testthread/testthread.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testtimer/testtimer.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testtimer/testtimer.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testtimer/testtimer.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testtimer/testtimer.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testver/testver.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testver/testver.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testver/testver.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testver/testver.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testwm2/testwm2.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testwm2/testwm2.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testwm2/testwm2.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/testwm2/testwm2.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/torturethread/torturethread.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/torturethread/torturethread.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/torturethread/torturethread.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode3/tests/torturethread/torturethread.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL.xcworkspace/contents.xcworkspacedata b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL.xcworkspace/contents.xcworkspacedata
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL.xcworkspace/contents.xcworkspacedata
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL.xcworkspace/contents.xcworkspacedata
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL2/SDL2.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL2/SDL2.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL2/SDL2.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL2/SDL2.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL2main/SDL2main.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL2main/SDL2main.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL2main/SDL2main.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL2main/SDL2main.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL2test/SDL2test.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL2test/SDL2test.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL2test/SDL2test.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL2test/SDL2test.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL_config_premake.h b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL_config_premake.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL_config_premake.h
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/SDL_config_premake.h
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/loopwave/loopwave.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/loopwave/loopwave.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/loopwave/loopwave.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/loopwave/loopwave.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testatomic/testatomic.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testatomic/testatomic.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testatomic/testatomic.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testatomic/testatomic.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testautomation/testautomation.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testautomation/testautomation.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testautomation/testautomation.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testautomation/testautomation.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testerror/testerror.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testerror/testerror.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testerror/testerror.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testerror/testerror.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testfile/testfile.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testfile/testfile.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testfile/testfile.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testfile/testfile.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgesture/testgesture.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgesture/testgesture.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgesture/testgesture.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgesture/testgesture.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgl2/testgl2.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgl2/testgl2.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgl2/testgl2.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgl2/testgl2.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgles/testgles.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgles/testgles.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgles/testgles.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testgles/testgles.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testiconv/testiconv.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testiconv/testiconv.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testiconv/testiconv.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testiconv/testiconv.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testime/testime.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testime/testime.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testime/testime.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testime/testime.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testkeys/testkeys.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testkeys/testkeys.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testkeys/testkeys.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testkeys/testkeys.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testloadso/testloadso.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testloadso/testloadso.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testloadso/testloadso.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testloadso/testloadso.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testlock/testlock.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testlock/testlock.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testlock/testlock.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testlock/testlock.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testmessage/testmessage.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testmessage/testmessage.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testmessage/testmessage.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testmessage/testmessage.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testnative/testnative.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testnative/testnative.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testnative/testnative.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testnative/testnative.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testplatform/testplatform.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testplatform/testplatform.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testplatform/testplatform.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testplatform/testplatform.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testpower/testpower.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testpower/testpower.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testpower/testpower.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testpower/testpower.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrelative/testrelative.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrelative/testrelative.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrelative/testrelative.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrelative/testrelative.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testresample/testresample.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testresample/testresample.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testresample/testresample.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testresample/testresample.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrumble/testrumble.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrumble/testrumble.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrumble/testrumble.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testrumble/testrumble.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testscale/testscale.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testscale/testscale.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testscale/testscale.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testscale/testscale.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testsem/testsem.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testsem/testsem.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testsem/testsem.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testsem/testsem.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testshader/testshader.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testshader/testshader.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testshader/testshader.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testshader/testshader.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testshape/testshape.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testshape/testshape.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testshape/testshape.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testshape/testshape.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testthread/testthread.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testthread/testthread.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testthread/testthread.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testthread/testthread.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testtimer/testtimer.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testtimer/testtimer.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testtimer/testtimer.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testtimer/testtimer.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testver/testver.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testver/testver.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testver/testver.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testver/testver.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testwm2/testwm2.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testwm2/testwm2.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testwm2/testwm2.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/testwm2/testwm2.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/torturethread/torturethread.xcodeproj/project.pbxproj b/love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/torturethread/torturethread.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/torturethread/torturethread.xcodeproj/project.pbxproj
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/Xcode4/tests/torturethread/torturethread.xcodeproj/project.pbxproj
diff --git a/jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode3.i386.command b/love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode3.i386.command
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode3.i386.command
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode3.i386.command
diff --git a/jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode3.x86_64.command b/love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode3.x86_64.command
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode3.x86_64.command
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode3.x86_64.command
diff --git a/jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode4.i386.command b/love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode4.i386.command
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode4.i386.command
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode4.i386.command
diff --git a/jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode4.x86_64.command b/love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode4.x86_64.command
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode4.x86_64.command
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/build.all.xcode4.x86_64.command
diff --git a/jni/SDL2-2.0.5/premake/Xcode/build-scripts/clean_premake.command b/love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/clean_premake.command
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/build-scripts/clean_premake.command
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/clean_premake.command
diff --git a/jni/SDL2-2.0.5/premake/Xcode/build-scripts/premake4 b/love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/premake4
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/build-scripts/premake4
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/premake4
diff --git a/jni/SDL2-2.0.5/premake/Xcode/build-scripts/run.tests.command b/love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/run.tests.command
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/build-scripts/run.tests.command
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/run.tests.command
diff --git a/jni/SDL2-2.0.5/premake/Xcode/build-scripts/xcode3.command b/love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/xcode3.command
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/build-scripts/xcode3.command
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/xcode3.command
diff --git a/jni/SDL2-2.0.5/premake/Xcode/build-scripts/xcode4.command b/love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/xcode4.command
similarity index 100%
rename from jni/SDL2-2.0.5/premake/Xcode/build-scripts/xcode4.command
rename to love/src/jni/SDL2-2.0.5/premake/Xcode/build-scripts/xcode4.command
diff --git a/jni/SDL2-2.0.5/premake/changelog b/love/src/jni/SDL2-2.0.5/premake/changelog
similarity index 100%
rename from jni/SDL2-2.0.5/premake/changelog
rename to love/src/jni/SDL2-2.0.5/premake/changelog
diff --git a/jni/SDL2-2.0.5/premake/config/SDL_config_cygwin.template.h b/love/src/jni/SDL2-2.0.5/premake/config/SDL_config_cygwin.template.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/config/SDL_config_cygwin.template.h
rename to love/src/jni/SDL2-2.0.5/premake/config/SDL_config_cygwin.template.h
diff --git a/jni/SDL2-2.0.5/premake/config/SDL_config_iphoneos.template.h b/love/src/jni/SDL2-2.0.5/premake/config/SDL_config_iphoneos.template.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/config/SDL_config_iphoneos.template.h
rename to love/src/jni/SDL2-2.0.5/premake/config/SDL_config_iphoneos.template.h
diff --git a/jni/SDL2-2.0.5/premake/config/SDL_config_linux.template.h b/love/src/jni/SDL2-2.0.5/premake/config/SDL_config_linux.template.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/config/SDL_config_linux.template.h
rename to love/src/jni/SDL2-2.0.5/premake/config/SDL_config_linux.template.h
diff --git a/jni/SDL2-2.0.5/premake/config/SDL_config_macosx.template.h b/love/src/jni/SDL2-2.0.5/premake/config/SDL_config_macosx.template.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/config/SDL_config_macosx.template.h
rename to love/src/jni/SDL2-2.0.5/premake/config/SDL_config_macosx.template.h
diff --git a/jni/SDL2-2.0.5/premake/config/SDL_config_minimal.template.h b/love/src/jni/SDL2-2.0.5/premake/config/SDL_config_minimal.template.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/config/SDL_config_minimal.template.h
rename to love/src/jni/SDL2-2.0.5/premake/config/SDL_config_minimal.template.h
diff --git a/jni/SDL2-2.0.5/premake/config/SDL_config_windows.template.h b/love/src/jni/SDL2-2.0.5/premake/config/SDL_config_windows.template.h
similarity index 100%
rename from jni/SDL2-2.0.5/premake/config/SDL_config_windows.template.h
rename to love/src/jni/SDL2-2.0.5/premake/config/SDL_config_windows.template.h
diff --git a/jni/SDL2-2.0.5/premake/patches/709.patch b/love/src/jni/SDL2-2.0.5/premake/patches/709.patch
similarity index 100%
rename from jni/SDL2-2.0.5/premake/patches/709.patch
rename to love/src/jni/SDL2-2.0.5/premake/patches/709.patch
diff --git a/jni/SDL2-2.0.5/premake/patches/711.patch b/love/src/jni/SDL2-2.0.5/premake/patches/711.patch
similarity index 100%
rename from jni/SDL2-2.0.5/premake/patches/711.patch
rename to love/src/jni/SDL2-2.0.5/premake/patches/711.patch
diff --git a/jni/SDL2-2.0.5/premake/patches/712.patch b/love/src/jni/SDL2-2.0.5/premake/patches/712.patch
similarity index 100%
rename from jni/SDL2-2.0.5/premake/patches/712.patch
rename to love/src/jni/SDL2-2.0.5/premake/patches/712.patch
diff --git a/jni/SDL2-2.0.5/premake/patches/713.patch b/love/src/jni/SDL2-2.0.5/premake/patches/713.patch
similarity index 100%
rename from jni/SDL2-2.0.5/premake/patches/713.patch
rename to love/src/jni/SDL2-2.0.5/premake/patches/713.patch
diff --git a/jni/SDL2-2.0.5/premake/patches/iOS.patch b/love/src/jni/SDL2-2.0.5/premake/patches/iOS.patch
similarity index 100%
rename from jni/SDL2-2.0.5/premake/patches/iOS.patch
rename to love/src/jni/SDL2-2.0.5/premake/patches/iOS.patch
diff --git a/jni/SDL2-2.0.5/premake/patches/premake.patches.txt b/love/src/jni/SDL2-2.0.5/premake/patches/premake.patches.txt
similarity index 100%
rename from jni/SDL2-2.0.5/premake/patches/premake.patches.txt
rename to love/src/jni/SDL2-2.0.5/premake/patches/premake.patches.txt
diff --git a/jni/SDL2-2.0.5/premake/premake4.lua b/love/src/jni/SDL2-2.0.5/premake/premake4.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/premake4.lua
rename to love/src/jni/SDL2-2.0.5/premake/premake4.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/SDL2.lua b/love/src/jni/SDL2-2.0.5/premake/projects/SDL2.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/SDL2.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/SDL2.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/SDL2main.lua b/love/src/jni/SDL2-2.0.5/premake/projects/SDL2main.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/SDL2main.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/SDL2main.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/SDL2test.lua b/love/src/jni/SDL2-2.0.5/premake/projects/SDL2test.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/SDL2test.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/SDL2test.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/accelerometer.lua b/love/src/jni/SDL2-2.0.5/premake/projects/accelerometer.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/accelerometer.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/accelerometer.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/checkkeys.lua b/love/src/jni/SDL2-2.0.5/premake/projects/checkkeys.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/checkkeys.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/checkkeys.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/fireworks.lua b/love/src/jni/SDL2-2.0.5/premake/projects/fireworks.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/fireworks.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/fireworks.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/happy.lua b/love/src/jni/SDL2-2.0.5/premake/projects/happy.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/happy.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/happy.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/keyboard.lua b/love/src/jni/SDL2-2.0.5/premake/projects/keyboard.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/keyboard.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/keyboard.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/loopwave.lua b/love/src/jni/SDL2-2.0.5/premake/projects/loopwave.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/loopwave.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/loopwave.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/mixer.lua b/love/src/jni/SDL2-2.0.5/premake/projects/mixer.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/mixer.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/mixer.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/rectangles.lua b/love/src/jni/SDL2-2.0.5/premake/projects/rectangles.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/rectangles.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/rectangles.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testatomic.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testatomic.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testatomic.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testatomic.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testaudioinfo.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testaudioinfo.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testaudioinfo.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testaudioinfo.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testautomation.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testautomation.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testautomation.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testautomation.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testdraw2.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testdraw2.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testdraw2.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testdraw2.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testdrawchessboard.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testdrawchessboard.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testdrawchessboard.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testdrawchessboard.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testerror.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testerror.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testerror.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testerror.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testfile.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testfile.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testfile.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testfile.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testfilesystem.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testfilesystem.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testfilesystem.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testfilesystem.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testgamecontroller.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testgamecontroller.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testgamecontroller.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testgamecontroller.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testgesture.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testgesture.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testgesture.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testgesture.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testgl2.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testgl2.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testgl2.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testgl2.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testgles.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testgles.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testgles.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testgles.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testhaptic.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testhaptic.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testhaptic.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testhaptic.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testiconv.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testiconv.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testiconv.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testiconv.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testime.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testime.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testime.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testime.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testintersection.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testintersection.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testintersection.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testintersection.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testjoystick.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testjoystick.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testjoystick.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testjoystick.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testkeys.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testkeys.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testkeys.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testkeys.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testloadso.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testloadso.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testloadso.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testloadso.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testlock.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testlock.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testlock.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testlock.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testmessage.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testmessage.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testmessage.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testmessage.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testmultiaudio.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testmultiaudio.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testmultiaudio.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testmultiaudio.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testnative.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testnative.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testnative.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testnative.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testoverlay2.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testoverlay2.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testoverlay2.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testoverlay2.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testplatform.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testplatform.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testplatform.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testplatform.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testpower.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testpower.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testpower.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testpower.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testrelative.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testrelative.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testrelative.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testrelative.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testrendercopyex.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testrendercopyex.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testrendercopyex.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testrendercopyex.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testrendertarget.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testrendertarget.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testrendertarget.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testrendertarget.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testresample.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testresample.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testresample.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testresample.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testrumble.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testrumble.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testrumble.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testrumble.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testscale.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testscale.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testscale.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testscale.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testsem.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testsem.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testsem.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testsem.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testshader.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testshader.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testshader.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testshader.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testshape.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testshape.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testshape.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testshape.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testsprite2.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testsprite2.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testsprite2.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testsprite2.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testspriteminimal.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testspriteminimal.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testspriteminimal.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testspriteminimal.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/teststreaming.lua b/love/src/jni/SDL2-2.0.5/premake/projects/teststreaming.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/teststreaming.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/teststreaming.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testthread.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testthread.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testthread.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testthread.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testtimer.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testtimer.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testtimer.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testtimer.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testver.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testver.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testver.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testver.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/testwm2.lua b/love/src/jni/SDL2-2.0.5/premake/projects/testwm2.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/testwm2.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/testwm2.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/torturethread.lua b/love/src/jni/SDL2-2.0.5/premake/projects/torturethread.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/torturethread.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/torturethread.lua
diff --git a/jni/SDL2-2.0.5/premake/projects/touch.lua b/love/src/jni/SDL2-2.0.5/premake/projects/touch.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/projects/touch.lua
rename to love/src/jni/SDL2-2.0.5/premake/projects/touch.lua
diff --git a/jni/SDL2-2.0.5/premake/util/sdl_check_compile.lua b/love/src/jni/SDL2-2.0.5/premake/util/sdl_check_compile.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/util/sdl_check_compile.lua
rename to love/src/jni/SDL2-2.0.5/premake/util/sdl_check_compile.lua
diff --git a/jni/SDL2-2.0.5/premake/util/sdl_dependency_checkers.lua b/love/src/jni/SDL2-2.0.5/premake/util/sdl_dependency_checkers.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/util/sdl_dependency_checkers.lua
rename to love/src/jni/SDL2-2.0.5/premake/util/sdl_dependency_checkers.lua
diff --git a/jni/SDL2-2.0.5/premake/util/sdl_depends.lua b/love/src/jni/SDL2-2.0.5/premake/util/sdl_depends.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/util/sdl_depends.lua
rename to love/src/jni/SDL2-2.0.5/premake/util/sdl_depends.lua
diff --git a/jni/SDL2-2.0.5/premake/util/sdl_file.lua b/love/src/jni/SDL2-2.0.5/premake/util/sdl_file.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/util/sdl_file.lua
rename to love/src/jni/SDL2-2.0.5/premake/util/sdl_file.lua
diff --git a/jni/SDL2-2.0.5/premake/util/sdl_gen_config.lua b/love/src/jni/SDL2-2.0.5/premake/util/sdl_gen_config.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/util/sdl_gen_config.lua
rename to love/src/jni/SDL2-2.0.5/premake/util/sdl_gen_config.lua
diff --git a/jni/SDL2-2.0.5/premake/util/sdl_projects.lua b/love/src/jni/SDL2-2.0.5/premake/util/sdl_projects.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/util/sdl_projects.lua
rename to love/src/jni/SDL2-2.0.5/premake/util/sdl_projects.lua
diff --git a/jni/SDL2-2.0.5/premake/util/sdl_string.lua b/love/src/jni/SDL2-2.0.5/premake/util/sdl_string.lua
similarity index 100%
rename from jni/SDL2-2.0.5/premake/util/sdl_string.lua
rename to love/src/jni/SDL2-2.0.5/premake/util/sdl_string.lua
diff --git a/jni/SDL2-2.0.5/sdl2-config.in b/love/src/jni/SDL2-2.0.5/sdl2-config.in
similarity index 100%
rename from jni/SDL2-2.0.5/sdl2-config.in
rename to love/src/jni/SDL2-2.0.5/sdl2-config.in
diff --git a/jni/SDL2-2.0.5/sdl2.m4 b/love/src/jni/SDL2-2.0.5/sdl2.m4
similarity index 100%
rename from jni/SDL2-2.0.5/sdl2.m4
rename to love/src/jni/SDL2-2.0.5/sdl2.m4
diff --git a/jni/SDL2-2.0.5/sdl2.pc.in b/love/src/jni/SDL2-2.0.5/sdl2.pc.in
similarity index 100%
rename from jni/SDL2-2.0.5/sdl2.pc.in
rename to love/src/jni/SDL2-2.0.5/sdl2.pc.in
diff --git a/jni/SDL2-2.0.5/src/SDL.c b/love/src/jni/SDL2-2.0.5/src/SDL.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/SDL.c
rename to love/src/jni/SDL2-2.0.5/src/SDL.c
diff --git a/jni/SDL2-2.0.5/src/SDL_assert.c b/love/src/jni/SDL2-2.0.5/src/SDL_assert.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/SDL_assert.c
rename to love/src/jni/SDL2-2.0.5/src/SDL_assert.c
diff --git a/jni/SDL2-2.0.5/src/SDL_assert_c.h b/love/src/jni/SDL2-2.0.5/src/SDL_assert_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/SDL_assert_c.h
rename to love/src/jni/SDL2-2.0.5/src/SDL_assert_c.h
diff --git a/jni/SDL2-2.0.5/src/SDL_error.c b/love/src/jni/SDL2-2.0.5/src/SDL_error.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/SDL_error.c
rename to love/src/jni/SDL2-2.0.5/src/SDL_error.c
diff --git a/jni/SDL2-2.0.5/src/SDL_error_c.h b/love/src/jni/SDL2-2.0.5/src/SDL_error_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/SDL_error_c.h
rename to love/src/jni/SDL2-2.0.5/src/SDL_error_c.h
diff --git a/jni/SDL2-2.0.5/src/SDL_hints.c b/love/src/jni/SDL2-2.0.5/src/SDL_hints.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/SDL_hints.c
rename to love/src/jni/SDL2-2.0.5/src/SDL_hints.c
diff --git a/jni/SDL2-2.0.5/src/SDL_internal.h b/love/src/jni/SDL2-2.0.5/src/SDL_internal.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/SDL_internal.h
rename to love/src/jni/SDL2-2.0.5/src/SDL_internal.h
diff --git a/jni/SDL2-2.0.5/src/SDL_log.c b/love/src/jni/SDL2-2.0.5/src/SDL_log.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/SDL_log.c
rename to love/src/jni/SDL2-2.0.5/src/SDL_log.c
diff --git a/jni/SDL2-2.0.5/src/atomic/SDL_atomic.c b/love/src/jni/SDL2-2.0.5/src/atomic/SDL_atomic.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/atomic/SDL_atomic.c
rename to love/src/jni/SDL2-2.0.5/src/atomic/SDL_atomic.c
diff --git a/jni/SDL2-2.0.5/src/atomic/SDL_spinlock.c b/love/src/jni/SDL2-2.0.5/src/atomic/SDL_spinlock.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/atomic/SDL_spinlock.c
rename to love/src/jni/SDL2-2.0.5/src/atomic/SDL_spinlock.c
diff --git a/jni/SDL2-2.0.5/src/audio/SDL_audio.c b/love/src/jni/SDL2-2.0.5/src/audio/SDL_audio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/SDL_audio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/SDL_audio.c
diff --git a/jni/SDL2-2.0.5/src/audio/SDL_audio_c.h b/love/src/jni/SDL2-2.0.5/src/audio/SDL_audio_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/SDL_audio_c.h
rename to love/src/jni/SDL2-2.0.5/src/audio/SDL_audio_c.h
diff --git a/jni/SDL2-2.0.5/src/audio/SDL_audiocvt.c b/love/src/jni/SDL2-2.0.5/src/audio/SDL_audiocvt.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/SDL_audiocvt.c
rename to love/src/jni/SDL2-2.0.5/src/audio/SDL_audiocvt.c
diff --git a/jni/SDL2-2.0.5/src/audio/SDL_audiodev.c b/love/src/jni/SDL2-2.0.5/src/audio/SDL_audiodev.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/SDL_audiodev.c
rename to love/src/jni/SDL2-2.0.5/src/audio/SDL_audiodev.c
diff --git a/jni/SDL2-2.0.5/src/audio/SDL_audiodev_c.h b/love/src/jni/SDL2-2.0.5/src/audio/SDL_audiodev_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/SDL_audiodev_c.h
rename to love/src/jni/SDL2-2.0.5/src/audio/SDL_audiodev_c.h
diff --git a/jni/SDL2-2.0.5/src/audio/SDL_audiomem.h b/love/src/jni/SDL2-2.0.5/src/audio/SDL_audiomem.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/SDL_audiomem.h
rename to love/src/jni/SDL2-2.0.5/src/audio/SDL_audiomem.h
diff --git a/jni/SDL2-2.0.5/src/audio/SDL_audiotypecvt.c b/love/src/jni/SDL2-2.0.5/src/audio/SDL_audiotypecvt.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/SDL_audiotypecvt.c
rename to love/src/jni/SDL2-2.0.5/src/audio/SDL_audiotypecvt.c
diff --git a/jni/SDL2-2.0.5/src/audio/SDL_mixer.c b/love/src/jni/SDL2-2.0.5/src/audio/SDL_mixer.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/SDL_mixer.c
rename to love/src/jni/SDL2-2.0.5/src/audio/SDL_mixer.c
diff --git a/jni/SDL2-2.0.5/src/audio/SDL_sysaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/SDL_sysaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/SDL_sysaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/SDL_sysaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/SDL_wave.c b/love/src/jni/SDL2-2.0.5/src/audio/SDL_wave.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/SDL_wave.c
rename to love/src/jni/SDL2-2.0.5/src/audio/SDL_wave.c
diff --git a/jni/SDL2-2.0.5/src/audio/SDL_wave.h b/love/src/jni/SDL2-2.0.5/src/audio/SDL_wave.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/SDL_wave.h
rename to love/src/jni/SDL2-2.0.5/src/audio/SDL_wave.h
diff --git a/jni/SDL2-2.0.5/src/audio/alsa/SDL_alsa_audio.c b/love/src/jni/SDL2-2.0.5/src/audio/alsa/SDL_alsa_audio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/alsa/SDL_alsa_audio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/alsa/SDL_alsa_audio.c
diff --git a/jni/SDL2-2.0.5/src/audio/alsa/SDL_alsa_audio.h b/love/src/jni/SDL2-2.0.5/src/audio/alsa/SDL_alsa_audio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/alsa/SDL_alsa_audio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/alsa/SDL_alsa_audio.h
diff --git a/jni/SDL2-2.0.5/src/audio/android/SDL_androidaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/android/SDL_androidaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/android/SDL_androidaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/android/SDL_androidaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/android/SDL_androidaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/android/SDL_androidaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/android/SDL_androidaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/android/SDL_androidaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/arts/SDL_artsaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/arts/SDL_artsaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/arts/SDL_artsaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/arts/SDL_artsaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/arts/SDL_artsaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/arts/SDL_artsaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/arts/SDL_artsaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/arts/SDL_artsaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/bsd/SDL_bsdaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/bsd/SDL_bsdaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/bsd/SDL_bsdaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/bsd/SDL_bsdaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/bsd/SDL_bsdaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/bsd/SDL_bsdaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/bsd/SDL_bsdaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/bsd/SDL_bsdaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/coreaudio/SDL_coreaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/coreaudio/SDL_coreaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/coreaudio/SDL_coreaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/coreaudio/SDL_coreaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/coreaudio/SDL_coreaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/coreaudio/SDL_coreaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/coreaudio/SDL_coreaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/coreaudio/SDL_coreaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/coreaudio/SDL_coreaudio.m b/love/src/jni/SDL2-2.0.5/src/audio/coreaudio/SDL_coreaudio.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/coreaudio/SDL_coreaudio.m
rename to love/src/jni/SDL2-2.0.5/src/audio/coreaudio/SDL_coreaudio.m
diff --git a/jni/SDL2-2.0.5/src/audio/directsound/SDL_directsound.c b/love/src/jni/SDL2-2.0.5/src/audio/directsound/SDL_directsound.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/directsound/SDL_directsound.c
rename to love/src/jni/SDL2-2.0.5/src/audio/directsound/SDL_directsound.c
diff --git a/jni/SDL2-2.0.5/src/audio/directsound/SDL_directsound.h b/love/src/jni/SDL2-2.0.5/src/audio/directsound/SDL_directsound.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/directsound/SDL_directsound.h
rename to love/src/jni/SDL2-2.0.5/src/audio/directsound/SDL_directsound.h
diff --git a/jni/SDL2-2.0.5/src/audio/disk/SDL_diskaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/disk/SDL_diskaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/disk/SDL_diskaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/disk/SDL_diskaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/disk/SDL_diskaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/disk/SDL_diskaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/disk/SDL_diskaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/disk/SDL_diskaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/dsp/SDL_dspaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/dsp/SDL_dspaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/dsp/SDL_dspaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/dsp/SDL_dspaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/dsp/SDL_dspaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/dsp/SDL_dspaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/dsp/SDL_dspaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/dsp/SDL_dspaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/dummy/SDL_dummyaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/dummy/SDL_dummyaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/dummy/SDL_dummyaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/dummy/SDL_dummyaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/dummy/SDL_dummyaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/dummy/SDL_dummyaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/dummy/SDL_dummyaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/dummy/SDL_dummyaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/esd/SDL_esdaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/esd/SDL_esdaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/esd/SDL_esdaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/esd/SDL_esdaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/esd/SDL_esdaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/esd/SDL_esdaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/esd/SDL_esdaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/esd/SDL_esdaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/fusionsound/SDL_fsaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/fusionsound/SDL_fsaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/fusionsound/SDL_fsaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/fusionsound/SDL_fsaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/fusionsound/SDL_fsaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/fusionsound/SDL_fsaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/fusionsound/SDL_fsaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/fusionsound/SDL_fsaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/haiku/SDL_haikuaudio.cc b/love/src/jni/SDL2-2.0.5/src/audio/haiku/SDL_haikuaudio.cc
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/haiku/SDL_haikuaudio.cc
rename to love/src/jni/SDL2-2.0.5/src/audio/haiku/SDL_haikuaudio.cc
diff --git a/jni/SDL2-2.0.5/src/audio/haiku/SDL_haikuaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/haiku/SDL_haikuaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/haiku/SDL_haikuaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/haiku/SDL_haikuaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/nacl/SDL_naclaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/nacl/SDL_naclaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/nacl/SDL_naclaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/nacl/SDL_naclaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/nacl/SDL_naclaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/nacl/SDL_naclaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/nacl/SDL_naclaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/nacl/SDL_naclaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/nas/SDL_nasaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/nas/SDL_nasaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/nas/SDL_nasaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/nas/SDL_nasaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/nas/SDL_nasaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/nas/SDL_nasaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/nas/SDL_nasaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/nas/SDL_nasaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/paudio/SDL_paudio.c b/love/src/jni/SDL2-2.0.5/src/audio/paudio/SDL_paudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/paudio/SDL_paudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/paudio/SDL_paudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/paudio/SDL_paudio.h b/love/src/jni/SDL2-2.0.5/src/audio/paudio/SDL_paudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/paudio/SDL_paudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/paudio/SDL_paudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/psp/SDL_pspaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/psp/SDL_pspaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/psp/SDL_pspaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/psp/SDL_pspaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/psp/SDL_pspaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/psp/SDL_pspaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/psp/SDL_pspaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/psp/SDL_pspaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/pulseaudio/SDL_pulseaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/pulseaudio/SDL_pulseaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/pulseaudio/SDL_pulseaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/pulseaudio/SDL_pulseaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/pulseaudio/SDL_pulseaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/pulseaudio/SDL_pulseaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/pulseaudio/SDL_pulseaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/pulseaudio/SDL_pulseaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/qsa/SDL_qsa_audio.c b/love/src/jni/SDL2-2.0.5/src/audio/qsa/SDL_qsa_audio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/qsa/SDL_qsa_audio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/qsa/SDL_qsa_audio.c
diff --git a/jni/SDL2-2.0.5/src/audio/qsa/SDL_qsa_audio.h b/love/src/jni/SDL2-2.0.5/src/audio/qsa/SDL_qsa_audio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/qsa/SDL_qsa_audio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/qsa/SDL_qsa_audio.h
diff --git a/jni/SDL2-2.0.5/src/audio/sdlgenaudiocvt.pl b/love/src/jni/SDL2-2.0.5/src/audio/sdlgenaudiocvt.pl
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/sdlgenaudiocvt.pl
rename to love/src/jni/SDL2-2.0.5/src/audio/sdlgenaudiocvt.pl
diff --git a/jni/SDL2-2.0.5/src/audio/sndio/SDL_sndioaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/sndio/SDL_sndioaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/sndio/SDL_sndioaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/sndio/SDL_sndioaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/sndio/SDL_sndioaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/sndio/SDL_sndioaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/sndio/SDL_sndioaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/sndio/SDL_sndioaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/sun/SDL_sunaudio.c b/love/src/jni/SDL2-2.0.5/src/audio/sun/SDL_sunaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/sun/SDL_sunaudio.c
rename to love/src/jni/SDL2-2.0.5/src/audio/sun/SDL_sunaudio.c
diff --git a/jni/SDL2-2.0.5/src/audio/sun/SDL_sunaudio.h b/love/src/jni/SDL2-2.0.5/src/audio/sun/SDL_sunaudio.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/sun/SDL_sunaudio.h
rename to love/src/jni/SDL2-2.0.5/src/audio/sun/SDL_sunaudio.h
diff --git a/jni/SDL2-2.0.5/src/audio/winmm/SDL_winmm.c b/love/src/jni/SDL2-2.0.5/src/audio/winmm/SDL_winmm.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/winmm/SDL_winmm.c
rename to love/src/jni/SDL2-2.0.5/src/audio/winmm/SDL_winmm.c
diff --git a/jni/SDL2-2.0.5/src/audio/winmm/SDL_winmm.h b/love/src/jni/SDL2-2.0.5/src/audio/winmm/SDL_winmm.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/winmm/SDL_winmm.h
rename to love/src/jni/SDL2-2.0.5/src/audio/winmm/SDL_winmm.h
diff --git a/jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2.c b/love/src/jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2.c
rename to love/src/jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2.c
diff --git a/jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2.h b/love/src/jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2.h
rename to love/src/jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2.h
diff --git a/jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2_winrthelpers.cpp b/love/src/jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2_winrthelpers.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2_winrthelpers.cpp
rename to love/src/jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2_winrthelpers.cpp
diff --git a/jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2_winrthelpers.h b/love/src/jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2_winrthelpers.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2_winrthelpers.h
rename to love/src/jni/SDL2-2.0.5/src/audio/xaudio2/SDL_xaudio2_winrthelpers.h
diff --git a/jni/SDL2-2.0.5/src/core/android/SDL_android.c b/love/src/jni/SDL2-2.0.5/src/core/android/SDL_android.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/android/SDL_android.c
rename to love/src/jni/SDL2-2.0.5/src/core/android/SDL_android.c
diff --git a/jni/SDL2-2.0.5/src/core/android/SDL_android.h b/love/src/jni/SDL2-2.0.5/src/core/android/SDL_android.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/android/SDL_android.h
rename to love/src/jni/SDL2-2.0.5/src/core/android/SDL_android.h
diff --git a/jni/SDL2-2.0.5/src/core/linux/SDL_dbus.c b/love/src/jni/SDL2-2.0.5/src/core/linux/SDL_dbus.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/linux/SDL_dbus.c
rename to love/src/jni/SDL2-2.0.5/src/core/linux/SDL_dbus.c
diff --git a/jni/SDL2-2.0.5/src/core/linux/SDL_dbus.h b/love/src/jni/SDL2-2.0.5/src/core/linux/SDL_dbus.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/linux/SDL_dbus.h
rename to love/src/jni/SDL2-2.0.5/src/core/linux/SDL_dbus.h
diff --git a/jni/SDL2-2.0.5/src/core/linux/SDL_evdev.c b/love/src/jni/SDL2-2.0.5/src/core/linux/SDL_evdev.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/linux/SDL_evdev.c
rename to love/src/jni/SDL2-2.0.5/src/core/linux/SDL_evdev.c
diff --git a/jni/SDL2-2.0.5/src/core/linux/SDL_evdev.h b/love/src/jni/SDL2-2.0.5/src/core/linux/SDL_evdev.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/linux/SDL_evdev.h
rename to love/src/jni/SDL2-2.0.5/src/core/linux/SDL_evdev.h
diff --git a/jni/SDL2-2.0.5/src/core/linux/SDL_fcitx.c b/love/src/jni/SDL2-2.0.5/src/core/linux/SDL_fcitx.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/linux/SDL_fcitx.c
rename to love/src/jni/SDL2-2.0.5/src/core/linux/SDL_fcitx.c
diff --git a/jni/SDL2-2.0.5/src/core/linux/SDL_fcitx.h b/love/src/jni/SDL2-2.0.5/src/core/linux/SDL_fcitx.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/linux/SDL_fcitx.h
rename to love/src/jni/SDL2-2.0.5/src/core/linux/SDL_fcitx.h
diff --git a/jni/SDL2-2.0.5/src/core/linux/SDL_ibus.c b/love/src/jni/SDL2-2.0.5/src/core/linux/SDL_ibus.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/linux/SDL_ibus.c
rename to love/src/jni/SDL2-2.0.5/src/core/linux/SDL_ibus.c
diff --git a/jni/SDL2-2.0.5/src/core/linux/SDL_ibus.h b/love/src/jni/SDL2-2.0.5/src/core/linux/SDL_ibus.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/linux/SDL_ibus.h
rename to love/src/jni/SDL2-2.0.5/src/core/linux/SDL_ibus.h
diff --git a/jni/SDL2-2.0.5/src/core/linux/SDL_ime.c b/love/src/jni/SDL2-2.0.5/src/core/linux/SDL_ime.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/linux/SDL_ime.c
rename to love/src/jni/SDL2-2.0.5/src/core/linux/SDL_ime.c
diff --git a/jni/SDL2-2.0.5/src/core/linux/SDL_ime.h b/love/src/jni/SDL2-2.0.5/src/core/linux/SDL_ime.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/linux/SDL_ime.h
rename to love/src/jni/SDL2-2.0.5/src/core/linux/SDL_ime.h
diff --git a/jni/SDL2-2.0.5/src/core/linux/SDL_udev.c b/love/src/jni/SDL2-2.0.5/src/core/linux/SDL_udev.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/linux/SDL_udev.c
rename to love/src/jni/SDL2-2.0.5/src/core/linux/SDL_udev.c
diff --git a/jni/SDL2-2.0.5/src/core/linux/SDL_udev.h b/love/src/jni/SDL2-2.0.5/src/core/linux/SDL_udev.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/linux/SDL_udev.h
rename to love/src/jni/SDL2-2.0.5/src/core/linux/SDL_udev.h
diff --git a/jni/SDL2-2.0.5/src/core/windows/SDL_directx.h b/love/src/jni/SDL2-2.0.5/src/core/windows/SDL_directx.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/windows/SDL_directx.h
rename to love/src/jni/SDL2-2.0.5/src/core/windows/SDL_directx.h
diff --git a/jni/SDL2-2.0.5/src/core/windows/SDL_windows.c b/love/src/jni/SDL2-2.0.5/src/core/windows/SDL_windows.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/windows/SDL_windows.c
rename to love/src/jni/SDL2-2.0.5/src/core/windows/SDL_windows.c
diff --git a/jni/SDL2-2.0.5/src/core/windows/SDL_windows.h b/love/src/jni/SDL2-2.0.5/src/core/windows/SDL_windows.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/windows/SDL_windows.h
rename to love/src/jni/SDL2-2.0.5/src/core/windows/SDL_windows.h
diff --git a/jni/SDL2-2.0.5/src/core/windows/SDL_xinput.c b/love/src/jni/SDL2-2.0.5/src/core/windows/SDL_xinput.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/windows/SDL_xinput.c
rename to love/src/jni/SDL2-2.0.5/src/core/windows/SDL_xinput.c
diff --git a/jni/SDL2-2.0.5/src/core/windows/SDL_xinput.h b/love/src/jni/SDL2-2.0.5/src/core/windows/SDL_xinput.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/windows/SDL_xinput.h
rename to love/src/jni/SDL2-2.0.5/src/core/windows/SDL_xinput.h
diff --git a/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_common.cpp b/love/src/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_common.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_common.cpp
rename to love/src/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_common.cpp
diff --git a/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_common.h b/love/src/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_common.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_common.h
rename to love/src/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_common.h
diff --git a/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_direct3d.cpp b/love/src/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_direct3d.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_direct3d.cpp
rename to love/src/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_direct3d.cpp
diff --git a/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_direct3d.h b/love/src/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_direct3d.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_direct3d.h
rename to love/src/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_direct3d.h
diff --git a/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_xaml.cpp b/love/src/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_xaml.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_xaml.cpp
rename to love/src/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_xaml.cpp
diff --git a/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_xaml.h b/love/src/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_xaml.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_xaml.h
rename to love/src/jni/SDL2-2.0.5/src/core/winrt/SDL_winrtapp_xaml.h
diff --git a/jni/SDL2-2.0.5/src/cpuinfo/SDL_cpuinfo.c b/love/src/jni/SDL2-2.0.5/src/cpuinfo/SDL_cpuinfo.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/cpuinfo/SDL_cpuinfo.c
rename to love/src/jni/SDL2-2.0.5/src/cpuinfo/SDL_cpuinfo.c
diff --git a/jni/SDL2-2.0.5/src/dynapi/SDL_dynapi.c b/love/src/jni/SDL2-2.0.5/src/dynapi/SDL_dynapi.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/dynapi/SDL_dynapi.c
rename to love/src/jni/SDL2-2.0.5/src/dynapi/SDL_dynapi.c
diff --git a/jni/SDL2-2.0.5/src/dynapi/SDL_dynapi.h b/love/src/jni/SDL2-2.0.5/src/dynapi/SDL_dynapi.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/dynapi/SDL_dynapi.h
rename to love/src/jni/SDL2-2.0.5/src/dynapi/SDL_dynapi.h
diff --git a/jni/SDL2-2.0.5/src/dynapi/SDL_dynapi_overrides.h b/love/src/jni/SDL2-2.0.5/src/dynapi/SDL_dynapi_overrides.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/dynapi/SDL_dynapi_overrides.h
rename to love/src/jni/SDL2-2.0.5/src/dynapi/SDL_dynapi_overrides.h
diff --git a/jni/SDL2-2.0.5/src/dynapi/SDL_dynapi_procs.h b/love/src/jni/SDL2-2.0.5/src/dynapi/SDL_dynapi_procs.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/dynapi/SDL_dynapi_procs.h
rename to love/src/jni/SDL2-2.0.5/src/dynapi/SDL_dynapi_procs.h
diff --git a/jni/SDL2-2.0.5/src/dynapi/gendynapi.pl b/love/src/jni/SDL2-2.0.5/src/dynapi/gendynapi.pl
similarity index 100%
rename from jni/SDL2-2.0.5/src/dynapi/gendynapi.pl
rename to love/src/jni/SDL2-2.0.5/src/dynapi/gendynapi.pl
diff --git a/jni/SDL2-2.0.5/src/events/SDL_clipboardevents.c b/love/src/jni/SDL2-2.0.5/src/events/SDL_clipboardevents.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_clipboardevents.c
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_clipboardevents.c
diff --git a/jni/SDL2-2.0.5/src/events/SDL_clipboardevents_c.h b/love/src/jni/SDL2-2.0.5/src/events/SDL_clipboardevents_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_clipboardevents_c.h
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_clipboardevents_c.h
diff --git a/jni/SDL2-2.0.5/src/events/SDL_dropevents.c b/love/src/jni/SDL2-2.0.5/src/events/SDL_dropevents.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_dropevents.c
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_dropevents.c
diff --git a/jni/SDL2-2.0.5/src/events/SDL_dropevents_c.h b/love/src/jni/SDL2-2.0.5/src/events/SDL_dropevents_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_dropevents_c.h
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_dropevents_c.h
diff --git a/jni/SDL2-2.0.5/src/events/SDL_events.c b/love/src/jni/SDL2-2.0.5/src/events/SDL_events.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_events.c
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_events.c
diff --git a/jni/SDL2-2.0.5/src/events/SDL_events_c.h b/love/src/jni/SDL2-2.0.5/src/events/SDL_events_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_events_c.h
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_events_c.h
diff --git a/jni/SDL2-2.0.5/src/events/SDL_gesture.c b/love/src/jni/SDL2-2.0.5/src/events/SDL_gesture.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_gesture.c
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_gesture.c
diff --git a/jni/SDL2-2.0.5/src/events/SDL_gesture_c.h b/love/src/jni/SDL2-2.0.5/src/events/SDL_gesture_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_gesture_c.h
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_gesture_c.h
diff --git a/jni/SDL2-2.0.5/src/events/SDL_keyboard.c b/love/src/jni/SDL2-2.0.5/src/events/SDL_keyboard.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_keyboard.c
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_keyboard.c
diff --git a/jni/SDL2-2.0.5/src/events/SDL_keyboard_c.h b/love/src/jni/SDL2-2.0.5/src/events/SDL_keyboard_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_keyboard_c.h
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_keyboard_c.h
diff --git a/jni/SDL2-2.0.5/src/events/SDL_mouse.c b/love/src/jni/SDL2-2.0.5/src/events/SDL_mouse.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_mouse.c
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_mouse.c
diff --git a/jni/SDL2-2.0.5/src/events/SDL_mouse_c.h b/love/src/jni/SDL2-2.0.5/src/events/SDL_mouse_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_mouse_c.h
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_mouse_c.h
diff --git a/jni/SDL2-2.0.5/src/events/SDL_quit.c b/love/src/jni/SDL2-2.0.5/src/events/SDL_quit.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_quit.c
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_quit.c
diff --git a/jni/SDL2-2.0.5/src/events/SDL_sysevents.h b/love/src/jni/SDL2-2.0.5/src/events/SDL_sysevents.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_sysevents.h
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_sysevents.h
diff --git a/jni/SDL2-2.0.5/src/events/SDL_touch.c b/love/src/jni/SDL2-2.0.5/src/events/SDL_touch.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_touch.c
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_touch.c
diff --git a/jni/SDL2-2.0.5/src/events/SDL_touch_c.h b/love/src/jni/SDL2-2.0.5/src/events/SDL_touch_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_touch_c.h
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_touch_c.h
diff --git a/jni/SDL2-2.0.5/src/events/SDL_windowevents.c b/love/src/jni/SDL2-2.0.5/src/events/SDL_windowevents.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_windowevents.c
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_windowevents.c
diff --git a/jni/SDL2-2.0.5/src/events/SDL_windowevents_c.h b/love/src/jni/SDL2-2.0.5/src/events/SDL_windowevents_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/SDL_windowevents_c.h
rename to love/src/jni/SDL2-2.0.5/src/events/SDL_windowevents_c.h
diff --git a/jni/SDL2-2.0.5/src/events/blank_cursor.h b/love/src/jni/SDL2-2.0.5/src/events/blank_cursor.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/blank_cursor.h
rename to love/src/jni/SDL2-2.0.5/src/events/blank_cursor.h
diff --git a/jni/SDL2-2.0.5/src/events/default_cursor.h b/love/src/jni/SDL2-2.0.5/src/events/default_cursor.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/default_cursor.h
rename to love/src/jni/SDL2-2.0.5/src/events/default_cursor.h
diff --git a/jni/SDL2-2.0.5/src/events/scancodes_darwin.h b/love/src/jni/SDL2-2.0.5/src/events/scancodes_darwin.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/scancodes_darwin.h
rename to love/src/jni/SDL2-2.0.5/src/events/scancodes_darwin.h
diff --git a/jni/SDL2-2.0.5/src/events/scancodes_linux.h b/love/src/jni/SDL2-2.0.5/src/events/scancodes_linux.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/scancodes_linux.h
rename to love/src/jni/SDL2-2.0.5/src/events/scancodes_linux.h
diff --git a/jni/SDL2-2.0.5/src/events/scancodes_windows.h b/love/src/jni/SDL2-2.0.5/src/events/scancodes_windows.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/scancodes_windows.h
rename to love/src/jni/SDL2-2.0.5/src/events/scancodes_windows.h
diff --git a/jni/SDL2-2.0.5/src/events/scancodes_xfree86.h b/love/src/jni/SDL2-2.0.5/src/events/scancodes_xfree86.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/events/scancodes_xfree86.h
rename to love/src/jni/SDL2-2.0.5/src/events/scancodes_xfree86.h
diff --git a/jni/SDL2-2.0.5/src/file/SDL_rwops.c b/love/src/jni/SDL2-2.0.5/src/file/SDL_rwops.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/file/SDL_rwops.c
rename to love/src/jni/SDL2-2.0.5/src/file/SDL_rwops.c
diff --git a/jni/SDL2-2.0.5/src/file/cocoa/SDL_rwopsbundlesupport.h b/love/src/jni/SDL2-2.0.5/src/file/cocoa/SDL_rwopsbundlesupport.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/file/cocoa/SDL_rwopsbundlesupport.h
rename to love/src/jni/SDL2-2.0.5/src/file/cocoa/SDL_rwopsbundlesupport.h
diff --git a/jni/SDL2-2.0.5/src/file/cocoa/SDL_rwopsbundlesupport.m b/love/src/jni/SDL2-2.0.5/src/file/cocoa/SDL_rwopsbundlesupport.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/file/cocoa/SDL_rwopsbundlesupport.m
rename to love/src/jni/SDL2-2.0.5/src/file/cocoa/SDL_rwopsbundlesupport.m
diff --git a/jni/SDL2-2.0.5/src/filesystem/android/SDL_sysfilesystem.c b/love/src/jni/SDL2-2.0.5/src/filesystem/android/SDL_sysfilesystem.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/filesystem/android/SDL_sysfilesystem.c
rename to love/src/jni/SDL2-2.0.5/src/filesystem/android/SDL_sysfilesystem.c
diff --git a/jni/SDL2-2.0.5/src/filesystem/cocoa/SDL_sysfilesystem.m b/love/src/jni/SDL2-2.0.5/src/filesystem/cocoa/SDL_sysfilesystem.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/filesystem/cocoa/SDL_sysfilesystem.m
rename to love/src/jni/SDL2-2.0.5/src/filesystem/cocoa/SDL_sysfilesystem.m
diff --git a/jni/SDL2-2.0.5/src/filesystem/dummy/SDL_sysfilesystem.c b/love/src/jni/SDL2-2.0.5/src/filesystem/dummy/SDL_sysfilesystem.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/filesystem/dummy/SDL_sysfilesystem.c
rename to love/src/jni/SDL2-2.0.5/src/filesystem/dummy/SDL_sysfilesystem.c
diff --git a/jni/SDL2-2.0.5/src/filesystem/haiku/SDL_sysfilesystem.cc b/love/src/jni/SDL2-2.0.5/src/filesystem/haiku/SDL_sysfilesystem.cc
similarity index 100%
rename from jni/SDL2-2.0.5/src/filesystem/haiku/SDL_sysfilesystem.cc
rename to love/src/jni/SDL2-2.0.5/src/filesystem/haiku/SDL_sysfilesystem.cc
diff --git a/jni/SDL2-2.0.5/src/filesystem/nacl/SDL_sysfilesystem.c b/love/src/jni/SDL2-2.0.5/src/filesystem/nacl/SDL_sysfilesystem.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/filesystem/nacl/SDL_sysfilesystem.c
rename to love/src/jni/SDL2-2.0.5/src/filesystem/nacl/SDL_sysfilesystem.c
diff --git a/jni/SDL2-2.0.5/src/filesystem/unix/SDL_sysfilesystem.c b/love/src/jni/SDL2-2.0.5/src/filesystem/unix/SDL_sysfilesystem.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/filesystem/unix/SDL_sysfilesystem.c
rename to love/src/jni/SDL2-2.0.5/src/filesystem/unix/SDL_sysfilesystem.c
diff --git a/jni/SDL2-2.0.5/src/filesystem/windows/SDL_sysfilesystem.c b/love/src/jni/SDL2-2.0.5/src/filesystem/windows/SDL_sysfilesystem.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/filesystem/windows/SDL_sysfilesystem.c
rename to love/src/jni/SDL2-2.0.5/src/filesystem/windows/SDL_sysfilesystem.c
diff --git a/jni/SDL2-2.0.5/src/filesystem/winrt/SDL_sysfilesystem.cpp b/love/src/jni/SDL2-2.0.5/src/filesystem/winrt/SDL_sysfilesystem.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/filesystem/winrt/SDL_sysfilesystem.cpp
rename to love/src/jni/SDL2-2.0.5/src/filesystem/winrt/SDL_sysfilesystem.cpp
diff --git a/jni/SDL2-2.0.5/src/haptic/SDL_haptic.c b/love/src/jni/SDL2-2.0.5/src/haptic/SDL_haptic.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/haptic/SDL_haptic.c
rename to love/src/jni/SDL2-2.0.5/src/haptic/SDL_haptic.c
diff --git a/jni/SDL2-2.0.5/src/haptic/SDL_haptic_c.h b/love/src/jni/SDL2-2.0.5/src/haptic/SDL_haptic_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/haptic/SDL_haptic_c.h
rename to love/src/jni/SDL2-2.0.5/src/haptic/SDL_haptic_c.h
diff --git a/jni/SDL2-2.0.5/src/haptic/SDL_syshaptic.h b/love/src/jni/SDL2-2.0.5/src/haptic/SDL_syshaptic.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/haptic/SDL_syshaptic.h
rename to love/src/jni/SDL2-2.0.5/src/haptic/SDL_syshaptic.h
diff --git a/jni/SDL2-2.0.5/src/haptic/darwin/SDL_syshaptic.c b/love/src/jni/SDL2-2.0.5/src/haptic/darwin/SDL_syshaptic.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/haptic/darwin/SDL_syshaptic.c
rename to love/src/jni/SDL2-2.0.5/src/haptic/darwin/SDL_syshaptic.c
diff --git a/jni/SDL2-2.0.5/src/haptic/darwin/SDL_syshaptic_c.h b/love/src/jni/SDL2-2.0.5/src/haptic/darwin/SDL_syshaptic_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/haptic/darwin/SDL_syshaptic_c.h
rename to love/src/jni/SDL2-2.0.5/src/haptic/darwin/SDL_syshaptic_c.h
diff --git a/jni/SDL2-2.0.5/src/haptic/dummy/SDL_syshaptic.c b/love/src/jni/SDL2-2.0.5/src/haptic/dummy/SDL_syshaptic.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/haptic/dummy/SDL_syshaptic.c
rename to love/src/jni/SDL2-2.0.5/src/haptic/dummy/SDL_syshaptic.c
diff --git a/jni/SDL2-2.0.5/src/haptic/linux/SDL_syshaptic.c b/love/src/jni/SDL2-2.0.5/src/haptic/linux/SDL_syshaptic.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/haptic/linux/SDL_syshaptic.c
rename to love/src/jni/SDL2-2.0.5/src/haptic/linux/SDL_syshaptic.c
diff --git a/jni/SDL2-2.0.5/src/haptic/windows/SDL_dinputhaptic.c b/love/src/jni/SDL2-2.0.5/src/haptic/windows/SDL_dinputhaptic.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/haptic/windows/SDL_dinputhaptic.c
rename to love/src/jni/SDL2-2.0.5/src/haptic/windows/SDL_dinputhaptic.c
diff --git a/jni/SDL2-2.0.5/src/haptic/windows/SDL_dinputhaptic_c.h b/love/src/jni/SDL2-2.0.5/src/haptic/windows/SDL_dinputhaptic_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/haptic/windows/SDL_dinputhaptic_c.h
rename to love/src/jni/SDL2-2.0.5/src/haptic/windows/SDL_dinputhaptic_c.h
diff --git a/jni/SDL2-2.0.5/src/haptic/windows/SDL_windowshaptic.c b/love/src/jni/SDL2-2.0.5/src/haptic/windows/SDL_windowshaptic.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/haptic/windows/SDL_windowshaptic.c
rename to love/src/jni/SDL2-2.0.5/src/haptic/windows/SDL_windowshaptic.c
diff --git a/jni/SDL2-2.0.5/src/haptic/windows/SDL_windowshaptic_c.h b/love/src/jni/SDL2-2.0.5/src/haptic/windows/SDL_windowshaptic_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/haptic/windows/SDL_windowshaptic_c.h
rename to love/src/jni/SDL2-2.0.5/src/haptic/windows/SDL_windowshaptic_c.h
diff --git a/jni/SDL2-2.0.5/src/haptic/windows/SDL_xinputhaptic.c b/love/src/jni/SDL2-2.0.5/src/haptic/windows/SDL_xinputhaptic.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/haptic/windows/SDL_xinputhaptic.c
rename to love/src/jni/SDL2-2.0.5/src/haptic/windows/SDL_xinputhaptic.c
diff --git a/jni/SDL2-2.0.5/src/haptic/windows/SDL_xinputhaptic_c.h b/love/src/jni/SDL2-2.0.5/src/haptic/windows/SDL_xinputhaptic_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/haptic/windows/SDL_xinputhaptic_c.h
rename to love/src/jni/SDL2-2.0.5/src/haptic/windows/SDL_xinputhaptic_c.h
diff --git a/jni/SDL2-2.0.5/src/joystick/SDL_gamecontroller.c b/love/src/jni/SDL2-2.0.5/src/joystick/SDL_gamecontroller.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/SDL_gamecontroller.c
rename to love/src/jni/SDL2-2.0.5/src/joystick/SDL_gamecontroller.c
diff --git a/jni/SDL2-2.0.5/src/joystick/SDL_gamecontrollerdb.h b/love/src/jni/SDL2-2.0.5/src/joystick/SDL_gamecontrollerdb.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/SDL_gamecontrollerdb.h
rename to love/src/jni/SDL2-2.0.5/src/joystick/SDL_gamecontrollerdb.h
diff --git a/jni/SDL2-2.0.5/src/joystick/SDL_joystick.c b/love/src/jni/SDL2-2.0.5/src/joystick/SDL_joystick.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/SDL_joystick.c
rename to love/src/jni/SDL2-2.0.5/src/joystick/SDL_joystick.c
diff --git a/jni/SDL2-2.0.5/src/joystick/SDL_joystick_c.h b/love/src/jni/SDL2-2.0.5/src/joystick/SDL_joystick_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/SDL_joystick_c.h
rename to love/src/jni/SDL2-2.0.5/src/joystick/SDL_joystick_c.h
diff --git a/jni/SDL2-2.0.5/src/joystick/SDL_sysjoystick.h b/love/src/jni/SDL2-2.0.5/src/joystick/SDL_sysjoystick.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/SDL_sysjoystick.h
rename to love/src/jni/SDL2-2.0.5/src/joystick/SDL_sysjoystick.h
diff --git a/jni/SDL2-2.0.5/src/joystick/android/SDL_sysjoystick.c b/love/src/jni/SDL2-2.0.5/src/joystick/android/SDL_sysjoystick.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/android/SDL_sysjoystick.c
rename to love/src/jni/SDL2-2.0.5/src/joystick/android/SDL_sysjoystick.c
diff --git a/jni/SDL2-2.0.5/src/joystick/android/SDL_sysjoystick_c.h b/love/src/jni/SDL2-2.0.5/src/joystick/android/SDL_sysjoystick_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/android/SDL_sysjoystick_c.h
rename to love/src/jni/SDL2-2.0.5/src/joystick/android/SDL_sysjoystick_c.h
diff --git a/jni/SDL2-2.0.5/src/joystick/bsd/SDL_sysjoystick.c b/love/src/jni/SDL2-2.0.5/src/joystick/bsd/SDL_sysjoystick.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/bsd/SDL_sysjoystick.c
rename to love/src/jni/SDL2-2.0.5/src/joystick/bsd/SDL_sysjoystick.c
diff --git a/jni/SDL2-2.0.5/src/joystick/darwin/SDL_sysjoystick.c b/love/src/jni/SDL2-2.0.5/src/joystick/darwin/SDL_sysjoystick.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/darwin/SDL_sysjoystick.c
rename to love/src/jni/SDL2-2.0.5/src/joystick/darwin/SDL_sysjoystick.c
diff --git a/jni/SDL2-2.0.5/src/joystick/darwin/SDL_sysjoystick_c.h b/love/src/jni/SDL2-2.0.5/src/joystick/darwin/SDL_sysjoystick_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/darwin/SDL_sysjoystick_c.h
rename to love/src/jni/SDL2-2.0.5/src/joystick/darwin/SDL_sysjoystick_c.h
diff --git a/jni/SDL2-2.0.5/src/joystick/dummy/SDL_sysjoystick.c b/love/src/jni/SDL2-2.0.5/src/joystick/dummy/SDL_sysjoystick.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/dummy/SDL_sysjoystick.c
rename to love/src/jni/SDL2-2.0.5/src/joystick/dummy/SDL_sysjoystick.c
diff --git a/jni/SDL2-2.0.5/src/joystick/haiku/SDL_haikujoystick.cc b/love/src/jni/SDL2-2.0.5/src/joystick/haiku/SDL_haikujoystick.cc
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/haiku/SDL_haikujoystick.cc
rename to love/src/jni/SDL2-2.0.5/src/joystick/haiku/SDL_haikujoystick.cc
diff --git a/jni/SDL2-2.0.5/src/joystick/linux/SDL_sysjoystick.c b/love/src/jni/SDL2-2.0.5/src/joystick/linux/SDL_sysjoystick.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/linux/SDL_sysjoystick.c
rename to love/src/jni/SDL2-2.0.5/src/joystick/linux/SDL_sysjoystick.c
diff --git a/jni/SDL2-2.0.5/src/joystick/linux/SDL_sysjoystick_c.h b/love/src/jni/SDL2-2.0.5/src/joystick/linux/SDL_sysjoystick_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/linux/SDL_sysjoystick_c.h
rename to love/src/jni/SDL2-2.0.5/src/joystick/linux/SDL_sysjoystick_c.h
diff --git a/jni/SDL2-2.0.5/src/joystick/psp/SDL_sysjoystick.c b/love/src/jni/SDL2-2.0.5/src/joystick/psp/SDL_sysjoystick.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/psp/SDL_sysjoystick.c
rename to love/src/jni/SDL2-2.0.5/src/joystick/psp/SDL_sysjoystick.c
diff --git a/jni/SDL2-2.0.5/src/joystick/sort_controllers.py b/love/src/jni/SDL2-2.0.5/src/joystick/sort_controllers.py
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/sort_controllers.py
rename to love/src/jni/SDL2-2.0.5/src/joystick/sort_controllers.py
diff --git a/jni/SDL2-2.0.5/src/joystick/windows/SDL_dinputjoystick.c b/love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_dinputjoystick.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/windows/SDL_dinputjoystick.c
rename to love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_dinputjoystick.c
diff --git a/jni/SDL2-2.0.5/src/joystick/windows/SDL_dinputjoystick_c.h b/love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_dinputjoystick_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/windows/SDL_dinputjoystick_c.h
rename to love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_dinputjoystick_c.h
diff --git a/jni/SDL2-2.0.5/src/joystick/windows/SDL_mmjoystick.c b/love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_mmjoystick.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/windows/SDL_mmjoystick.c
rename to love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_mmjoystick.c
diff --git a/jni/SDL2-2.0.5/src/joystick/windows/SDL_windowsjoystick.c b/love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_windowsjoystick.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/windows/SDL_windowsjoystick.c
rename to love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_windowsjoystick.c
diff --git a/jni/SDL2-2.0.5/src/joystick/windows/SDL_windowsjoystick_c.h b/love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_windowsjoystick_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/windows/SDL_windowsjoystick_c.h
rename to love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_windowsjoystick_c.h
diff --git a/jni/SDL2-2.0.5/src/joystick/windows/SDL_xinputjoystick.c b/love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_xinputjoystick.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/windows/SDL_xinputjoystick.c
rename to love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_xinputjoystick.c
diff --git a/jni/SDL2-2.0.5/src/joystick/windows/SDL_xinputjoystick_c.h b/love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_xinputjoystick_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/joystick/windows/SDL_xinputjoystick_c.h
rename to love/src/jni/SDL2-2.0.5/src/joystick/windows/SDL_xinputjoystick_c.h
diff --git a/jni/SDL2-2.0.5/src/libm/e_atan2.c b/love/src/jni/SDL2-2.0.5/src/libm/e_atan2.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/e_atan2.c
rename to love/src/jni/SDL2-2.0.5/src/libm/e_atan2.c
diff --git a/jni/SDL2-2.0.5/src/libm/e_log.c b/love/src/jni/SDL2-2.0.5/src/libm/e_log.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/e_log.c
rename to love/src/jni/SDL2-2.0.5/src/libm/e_log.c
diff --git a/jni/SDL2-2.0.5/src/libm/e_pow.c b/love/src/jni/SDL2-2.0.5/src/libm/e_pow.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/e_pow.c
rename to love/src/jni/SDL2-2.0.5/src/libm/e_pow.c
diff --git a/jni/SDL2-2.0.5/src/libm/e_rem_pio2.c b/love/src/jni/SDL2-2.0.5/src/libm/e_rem_pio2.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/e_rem_pio2.c
rename to love/src/jni/SDL2-2.0.5/src/libm/e_rem_pio2.c
diff --git a/jni/SDL2-2.0.5/src/libm/e_sqrt.c b/love/src/jni/SDL2-2.0.5/src/libm/e_sqrt.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/e_sqrt.c
rename to love/src/jni/SDL2-2.0.5/src/libm/e_sqrt.c
diff --git a/jni/SDL2-2.0.5/src/libm/k_cos.c b/love/src/jni/SDL2-2.0.5/src/libm/k_cos.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/k_cos.c
rename to love/src/jni/SDL2-2.0.5/src/libm/k_cos.c
diff --git a/jni/SDL2-2.0.5/src/libm/k_rem_pio2.c b/love/src/jni/SDL2-2.0.5/src/libm/k_rem_pio2.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/k_rem_pio2.c
rename to love/src/jni/SDL2-2.0.5/src/libm/k_rem_pio2.c
diff --git a/jni/SDL2-2.0.5/src/libm/k_sin.c b/love/src/jni/SDL2-2.0.5/src/libm/k_sin.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/k_sin.c
rename to love/src/jni/SDL2-2.0.5/src/libm/k_sin.c
diff --git a/jni/SDL2-2.0.5/src/libm/k_tan.c b/love/src/jni/SDL2-2.0.5/src/libm/k_tan.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/k_tan.c
rename to love/src/jni/SDL2-2.0.5/src/libm/k_tan.c
diff --git a/jni/SDL2-2.0.5/src/libm/math_libm.h b/love/src/jni/SDL2-2.0.5/src/libm/math_libm.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/math_libm.h
rename to love/src/jni/SDL2-2.0.5/src/libm/math_libm.h
diff --git a/jni/SDL2-2.0.5/src/libm/math_private.h b/love/src/jni/SDL2-2.0.5/src/libm/math_private.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/math_private.h
rename to love/src/jni/SDL2-2.0.5/src/libm/math_private.h
diff --git a/jni/SDL2-2.0.5/src/libm/s_atan.c b/love/src/jni/SDL2-2.0.5/src/libm/s_atan.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/s_atan.c
rename to love/src/jni/SDL2-2.0.5/src/libm/s_atan.c
diff --git a/jni/SDL2-2.0.5/src/libm/s_copysign.c b/love/src/jni/SDL2-2.0.5/src/libm/s_copysign.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/s_copysign.c
rename to love/src/jni/SDL2-2.0.5/src/libm/s_copysign.c
diff --git a/jni/SDL2-2.0.5/src/libm/s_cos.c b/love/src/jni/SDL2-2.0.5/src/libm/s_cos.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/s_cos.c
rename to love/src/jni/SDL2-2.0.5/src/libm/s_cos.c
diff --git a/jni/SDL2-2.0.5/src/libm/s_fabs.c b/love/src/jni/SDL2-2.0.5/src/libm/s_fabs.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/s_fabs.c
rename to love/src/jni/SDL2-2.0.5/src/libm/s_fabs.c
diff --git a/jni/SDL2-2.0.5/src/libm/s_floor.c b/love/src/jni/SDL2-2.0.5/src/libm/s_floor.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/s_floor.c
rename to love/src/jni/SDL2-2.0.5/src/libm/s_floor.c
diff --git a/jni/SDL2-2.0.5/src/libm/s_scalbn.c b/love/src/jni/SDL2-2.0.5/src/libm/s_scalbn.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/s_scalbn.c
rename to love/src/jni/SDL2-2.0.5/src/libm/s_scalbn.c
diff --git a/jni/SDL2-2.0.5/src/libm/s_sin.c b/love/src/jni/SDL2-2.0.5/src/libm/s_sin.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/s_sin.c
rename to love/src/jni/SDL2-2.0.5/src/libm/s_sin.c
diff --git a/jni/SDL2-2.0.5/src/libm/s_tan.c b/love/src/jni/SDL2-2.0.5/src/libm/s_tan.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/libm/s_tan.c
rename to love/src/jni/SDL2-2.0.5/src/libm/s_tan.c
diff --git a/jni/SDL2-2.0.5/src/loadso/dlopen/SDL_sysloadso.c b/love/src/jni/SDL2-2.0.5/src/loadso/dlopen/SDL_sysloadso.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/loadso/dlopen/SDL_sysloadso.c
rename to love/src/jni/SDL2-2.0.5/src/loadso/dlopen/SDL_sysloadso.c
diff --git a/jni/SDL2-2.0.5/src/loadso/dummy/SDL_sysloadso.c b/love/src/jni/SDL2-2.0.5/src/loadso/dummy/SDL_sysloadso.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/loadso/dummy/SDL_sysloadso.c
rename to love/src/jni/SDL2-2.0.5/src/loadso/dummy/SDL_sysloadso.c
diff --git a/jni/SDL2-2.0.5/src/loadso/haiku/SDL_sysloadso.c b/love/src/jni/SDL2-2.0.5/src/loadso/haiku/SDL_sysloadso.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/loadso/haiku/SDL_sysloadso.c
rename to love/src/jni/SDL2-2.0.5/src/loadso/haiku/SDL_sysloadso.c
diff --git a/jni/SDL2-2.0.5/src/loadso/windows/SDL_sysloadso.c b/love/src/jni/SDL2-2.0.5/src/loadso/windows/SDL_sysloadso.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/loadso/windows/SDL_sysloadso.c
rename to love/src/jni/SDL2-2.0.5/src/loadso/windows/SDL_sysloadso.c
diff --git a/jni/SDL2-2.0.5/src/main/android/SDL_android_main.c b/love/src/jni/SDL2-2.0.5/src/main/android/SDL_android_main.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/main/android/SDL_android_main.c
rename to love/src/jni/SDL2-2.0.5/src/main/android/SDL_android_main.c
diff --git a/jni/SDL2-2.0.5/src/main/dummy/SDL_dummy_main.c b/love/src/jni/SDL2-2.0.5/src/main/dummy/SDL_dummy_main.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/main/dummy/SDL_dummy_main.c
rename to love/src/jni/SDL2-2.0.5/src/main/dummy/SDL_dummy_main.c
diff --git a/jni/SDL2-2.0.5/src/main/haiku/SDL_BApp.h b/love/src/jni/SDL2-2.0.5/src/main/haiku/SDL_BApp.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/main/haiku/SDL_BApp.h
rename to love/src/jni/SDL2-2.0.5/src/main/haiku/SDL_BApp.h
diff --git a/jni/SDL2-2.0.5/src/main/haiku/SDL_BeApp.cc b/love/src/jni/SDL2-2.0.5/src/main/haiku/SDL_BeApp.cc
similarity index 100%
rename from jni/SDL2-2.0.5/src/main/haiku/SDL_BeApp.cc
rename to love/src/jni/SDL2-2.0.5/src/main/haiku/SDL_BeApp.cc
diff --git a/jni/SDL2-2.0.5/src/main/haiku/SDL_BeApp.h b/love/src/jni/SDL2-2.0.5/src/main/haiku/SDL_BeApp.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/main/haiku/SDL_BeApp.h
rename to love/src/jni/SDL2-2.0.5/src/main/haiku/SDL_BeApp.h
diff --git a/jni/SDL2-2.0.5/src/main/nacl/SDL_nacl_main.c b/love/src/jni/SDL2-2.0.5/src/main/nacl/SDL_nacl_main.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/main/nacl/SDL_nacl_main.c
rename to love/src/jni/SDL2-2.0.5/src/main/nacl/SDL_nacl_main.c
diff --git a/jni/SDL2-2.0.5/src/main/psp/SDL_psp_main.c b/love/src/jni/SDL2-2.0.5/src/main/psp/SDL_psp_main.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/main/psp/SDL_psp_main.c
rename to love/src/jni/SDL2-2.0.5/src/main/psp/SDL_psp_main.c
diff --git a/jni/SDL2-2.0.5/src/main/windows/SDL_windows_main.c b/love/src/jni/SDL2-2.0.5/src/main/windows/SDL_windows_main.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/main/windows/SDL_windows_main.c
rename to love/src/jni/SDL2-2.0.5/src/main/windows/SDL_windows_main.c
diff --git a/jni/SDL2-2.0.5/src/main/windows/version.rc b/love/src/jni/SDL2-2.0.5/src/main/windows/version.rc
similarity index 100%
rename from jni/SDL2-2.0.5/src/main/windows/version.rc
rename to love/src/jni/SDL2-2.0.5/src/main/windows/version.rc
diff --git a/jni/SDL2-2.0.5/src/main/winrt/SDL_winrt_main_NonXAML.cpp b/love/src/jni/SDL2-2.0.5/src/main/winrt/SDL_winrt_main_NonXAML.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/main/winrt/SDL_winrt_main_NonXAML.cpp
rename to love/src/jni/SDL2-2.0.5/src/main/winrt/SDL_winrt_main_NonXAML.cpp
diff --git a/jni/SDL2-2.0.5/src/power/SDL_power.c b/love/src/jni/SDL2-2.0.5/src/power/SDL_power.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/power/SDL_power.c
rename to love/src/jni/SDL2-2.0.5/src/power/SDL_power.c
diff --git a/jni/SDL2-2.0.5/src/power/android/SDL_syspower.c b/love/src/jni/SDL2-2.0.5/src/power/android/SDL_syspower.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/power/android/SDL_syspower.c
rename to love/src/jni/SDL2-2.0.5/src/power/android/SDL_syspower.c
diff --git a/jni/SDL2-2.0.5/src/power/haiku/SDL_syspower.c b/love/src/jni/SDL2-2.0.5/src/power/haiku/SDL_syspower.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/power/haiku/SDL_syspower.c
rename to love/src/jni/SDL2-2.0.5/src/power/haiku/SDL_syspower.c
diff --git a/jni/SDL2-2.0.5/src/power/linux/SDL_syspower.c b/love/src/jni/SDL2-2.0.5/src/power/linux/SDL_syspower.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/power/linux/SDL_syspower.c
rename to love/src/jni/SDL2-2.0.5/src/power/linux/SDL_syspower.c
diff --git a/jni/SDL2-2.0.5/src/power/macosx/SDL_syspower.c b/love/src/jni/SDL2-2.0.5/src/power/macosx/SDL_syspower.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/power/macosx/SDL_syspower.c
rename to love/src/jni/SDL2-2.0.5/src/power/macosx/SDL_syspower.c
diff --git a/jni/SDL2-2.0.5/src/power/psp/SDL_syspower.c b/love/src/jni/SDL2-2.0.5/src/power/psp/SDL_syspower.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/power/psp/SDL_syspower.c
rename to love/src/jni/SDL2-2.0.5/src/power/psp/SDL_syspower.c
diff --git a/jni/SDL2-2.0.5/src/power/uikit/SDL_syspower.h b/love/src/jni/SDL2-2.0.5/src/power/uikit/SDL_syspower.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/power/uikit/SDL_syspower.h
rename to love/src/jni/SDL2-2.0.5/src/power/uikit/SDL_syspower.h
diff --git a/jni/SDL2-2.0.5/src/power/uikit/SDL_syspower.m b/love/src/jni/SDL2-2.0.5/src/power/uikit/SDL_syspower.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/power/uikit/SDL_syspower.m
rename to love/src/jni/SDL2-2.0.5/src/power/uikit/SDL_syspower.m
diff --git a/jni/SDL2-2.0.5/src/power/windows/SDL_syspower.c b/love/src/jni/SDL2-2.0.5/src/power/windows/SDL_syspower.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/power/windows/SDL_syspower.c
rename to love/src/jni/SDL2-2.0.5/src/power/windows/SDL_syspower.c
diff --git a/jni/SDL2-2.0.5/src/power/winrt/SDL_syspower.cpp b/love/src/jni/SDL2-2.0.5/src/power/winrt/SDL_syspower.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/power/winrt/SDL_syspower.cpp
rename to love/src/jni/SDL2-2.0.5/src/power/winrt/SDL_syspower.cpp
diff --git a/jni/SDL2-2.0.5/src/render/SDL_d3dmath.c b/love/src/jni/SDL2-2.0.5/src/render/SDL_d3dmath.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/SDL_d3dmath.c
rename to love/src/jni/SDL2-2.0.5/src/render/SDL_d3dmath.c
diff --git a/jni/SDL2-2.0.5/src/render/SDL_d3dmath.h b/love/src/jni/SDL2-2.0.5/src/render/SDL_d3dmath.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/SDL_d3dmath.h
rename to love/src/jni/SDL2-2.0.5/src/render/SDL_d3dmath.h
diff --git a/jni/SDL2-2.0.5/src/render/SDL_render.c b/love/src/jni/SDL2-2.0.5/src/render/SDL_render.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/SDL_render.c
rename to love/src/jni/SDL2-2.0.5/src/render/SDL_render.c
diff --git a/jni/SDL2-2.0.5/src/render/SDL_sysrender.h b/love/src/jni/SDL2-2.0.5/src/render/SDL_sysrender.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/SDL_sysrender.h
rename to love/src/jni/SDL2-2.0.5/src/render/SDL_sysrender.h
diff --git a/jni/SDL2-2.0.5/src/render/SDL_yuv_mmx.c b/love/src/jni/SDL2-2.0.5/src/render/SDL_yuv_mmx.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/SDL_yuv_mmx.c
rename to love/src/jni/SDL2-2.0.5/src/render/SDL_yuv_mmx.c
diff --git a/jni/SDL2-2.0.5/src/render/SDL_yuv_sw.c b/love/src/jni/SDL2-2.0.5/src/render/SDL_yuv_sw.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/SDL_yuv_sw.c
rename to love/src/jni/SDL2-2.0.5/src/render/SDL_yuv_sw.c
diff --git a/jni/SDL2-2.0.5/src/render/SDL_yuv_sw_c.h b/love/src/jni/SDL2-2.0.5/src/render/SDL_yuv_sw_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/SDL_yuv_sw_c.h
rename to love/src/jni/SDL2-2.0.5/src/render/SDL_yuv_sw_c.h
diff --git a/jni/SDL2-2.0.5/src/render/direct3d/SDL_render_d3d.c b/love/src/jni/SDL2-2.0.5/src/render/direct3d/SDL_render_d3d.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/direct3d/SDL_render_d3d.c
rename to love/src/jni/SDL2-2.0.5/src/render/direct3d/SDL_render_d3d.c
diff --git a/jni/SDL2-2.0.5/src/render/direct3d11/SDL_render_d3d11.c b/love/src/jni/SDL2-2.0.5/src/render/direct3d11/SDL_render_d3d11.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/direct3d11/SDL_render_d3d11.c
rename to love/src/jni/SDL2-2.0.5/src/render/direct3d11/SDL_render_d3d11.c
diff --git a/jni/SDL2-2.0.5/src/render/direct3d11/SDL_render_winrt.cpp b/love/src/jni/SDL2-2.0.5/src/render/direct3d11/SDL_render_winrt.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/direct3d11/SDL_render_winrt.cpp
rename to love/src/jni/SDL2-2.0.5/src/render/direct3d11/SDL_render_winrt.cpp
diff --git a/jni/SDL2-2.0.5/src/render/direct3d11/SDL_render_winrt.h b/love/src/jni/SDL2-2.0.5/src/render/direct3d11/SDL_render_winrt.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/direct3d11/SDL_render_winrt.h
rename to love/src/jni/SDL2-2.0.5/src/render/direct3d11/SDL_render_winrt.h
diff --git a/jni/SDL2-2.0.5/src/render/mmx.h b/love/src/jni/SDL2-2.0.5/src/render/mmx.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/mmx.h
rename to love/src/jni/SDL2-2.0.5/src/render/mmx.h
diff --git a/jni/SDL2-2.0.5/src/render/opengl/SDL_glfuncs.h b/love/src/jni/SDL2-2.0.5/src/render/opengl/SDL_glfuncs.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/opengl/SDL_glfuncs.h
rename to love/src/jni/SDL2-2.0.5/src/render/opengl/SDL_glfuncs.h
diff --git a/jni/SDL2-2.0.5/src/render/opengl/SDL_render_gl.c b/love/src/jni/SDL2-2.0.5/src/render/opengl/SDL_render_gl.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/opengl/SDL_render_gl.c
rename to love/src/jni/SDL2-2.0.5/src/render/opengl/SDL_render_gl.c
diff --git a/jni/SDL2-2.0.5/src/render/opengl/SDL_shaders_gl.c b/love/src/jni/SDL2-2.0.5/src/render/opengl/SDL_shaders_gl.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/opengl/SDL_shaders_gl.c
rename to love/src/jni/SDL2-2.0.5/src/render/opengl/SDL_shaders_gl.c
diff --git a/jni/SDL2-2.0.5/src/render/opengl/SDL_shaders_gl.h b/love/src/jni/SDL2-2.0.5/src/render/opengl/SDL_shaders_gl.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/opengl/SDL_shaders_gl.h
rename to love/src/jni/SDL2-2.0.5/src/render/opengl/SDL_shaders_gl.h
diff --git a/jni/SDL2-2.0.5/src/render/opengles/SDL_glesfuncs.h b/love/src/jni/SDL2-2.0.5/src/render/opengles/SDL_glesfuncs.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/opengles/SDL_glesfuncs.h
rename to love/src/jni/SDL2-2.0.5/src/render/opengles/SDL_glesfuncs.h
diff --git a/jni/SDL2-2.0.5/src/render/opengles/SDL_render_gles.c b/love/src/jni/SDL2-2.0.5/src/render/opengles/SDL_render_gles.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/opengles/SDL_render_gles.c
rename to love/src/jni/SDL2-2.0.5/src/render/opengles/SDL_render_gles.c
diff --git a/jni/SDL2-2.0.5/src/render/opengles2/SDL_gles2funcs.h b/love/src/jni/SDL2-2.0.5/src/render/opengles2/SDL_gles2funcs.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/opengles2/SDL_gles2funcs.h
rename to love/src/jni/SDL2-2.0.5/src/render/opengles2/SDL_gles2funcs.h
diff --git a/jni/SDL2-2.0.5/src/render/opengles2/SDL_render_gles2.c b/love/src/jni/SDL2-2.0.5/src/render/opengles2/SDL_render_gles2.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/opengles2/SDL_render_gles2.c
rename to love/src/jni/SDL2-2.0.5/src/render/opengles2/SDL_render_gles2.c
diff --git a/jni/SDL2-2.0.5/src/render/opengles2/SDL_shaders_gles2.c b/love/src/jni/SDL2-2.0.5/src/render/opengles2/SDL_shaders_gles2.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/opengles2/SDL_shaders_gles2.c
rename to love/src/jni/SDL2-2.0.5/src/render/opengles2/SDL_shaders_gles2.c
diff --git a/jni/SDL2-2.0.5/src/render/opengles2/SDL_shaders_gles2.h b/love/src/jni/SDL2-2.0.5/src/render/opengles2/SDL_shaders_gles2.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/opengles2/SDL_shaders_gles2.h
rename to love/src/jni/SDL2-2.0.5/src/render/opengles2/SDL_shaders_gles2.h
diff --git a/jni/SDL2-2.0.5/src/render/psp/SDL_render_psp.c b/love/src/jni/SDL2-2.0.5/src/render/psp/SDL_render_psp.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/psp/SDL_render_psp.c
rename to love/src/jni/SDL2-2.0.5/src/render/psp/SDL_render_psp.c
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_blendfillrect.c b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_blendfillrect.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_blendfillrect.c
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_blendfillrect.c
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_blendfillrect.h b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_blendfillrect.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_blendfillrect.h
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_blendfillrect.h
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_blendline.c b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_blendline.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_blendline.c
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_blendline.c
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_blendline.h b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_blendline.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_blendline.h
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_blendline.h
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_blendpoint.c b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_blendpoint.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_blendpoint.c
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_blendpoint.c
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_blendpoint.h b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_blendpoint.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_blendpoint.h
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_blendpoint.h
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_draw.h b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_draw.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_draw.h
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_draw.h
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_drawline.c b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_drawline.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_drawline.c
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_drawline.c
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_drawline.h b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_drawline.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_drawline.h
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_drawline.h
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_drawpoint.c b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_drawpoint.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_drawpoint.c
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_drawpoint.c
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_drawpoint.h b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_drawpoint.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_drawpoint.h
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_drawpoint.h
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_render_sw.c b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_render_sw.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_render_sw.c
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_render_sw.c
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_render_sw_c.h b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_render_sw_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_render_sw_c.h
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_render_sw_c.h
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_rotate.c b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_rotate.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_rotate.c
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_rotate.c
diff --git a/jni/SDL2-2.0.5/src/render/software/SDL_rotate.h b/love/src/jni/SDL2-2.0.5/src/render/software/SDL_rotate.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/render/software/SDL_rotate.h
rename to love/src/jni/SDL2-2.0.5/src/render/software/SDL_rotate.h
diff --git a/jni/SDL2-2.0.5/src/stdlib/SDL_getenv.c b/love/src/jni/SDL2-2.0.5/src/stdlib/SDL_getenv.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/stdlib/SDL_getenv.c
rename to love/src/jni/SDL2-2.0.5/src/stdlib/SDL_getenv.c
diff --git a/jni/SDL2-2.0.5/src/stdlib/SDL_iconv.c b/love/src/jni/SDL2-2.0.5/src/stdlib/SDL_iconv.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/stdlib/SDL_iconv.c
rename to love/src/jni/SDL2-2.0.5/src/stdlib/SDL_iconv.c
diff --git a/jni/SDL2-2.0.5/src/stdlib/SDL_malloc.c b/love/src/jni/SDL2-2.0.5/src/stdlib/SDL_malloc.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/stdlib/SDL_malloc.c
rename to love/src/jni/SDL2-2.0.5/src/stdlib/SDL_malloc.c
diff --git a/jni/SDL2-2.0.5/src/stdlib/SDL_qsort.c b/love/src/jni/SDL2-2.0.5/src/stdlib/SDL_qsort.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/stdlib/SDL_qsort.c
rename to love/src/jni/SDL2-2.0.5/src/stdlib/SDL_qsort.c
diff --git a/jni/SDL2-2.0.5/src/stdlib/SDL_stdlib.c b/love/src/jni/SDL2-2.0.5/src/stdlib/SDL_stdlib.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/stdlib/SDL_stdlib.c
rename to love/src/jni/SDL2-2.0.5/src/stdlib/SDL_stdlib.c
diff --git a/jni/SDL2-2.0.5/src/stdlib/SDL_string.c b/love/src/jni/SDL2-2.0.5/src/stdlib/SDL_string.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/stdlib/SDL_string.c
rename to love/src/jni/SDL2-2.0.5/src/stdlib/SDL_string.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_assert.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_assert.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_assert.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_assert.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_common.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_common.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_common.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_common.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_compare.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_compare.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_compare.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_compare.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_crc32.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_crc32.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_crc32.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_crc32.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_font.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_font.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_font.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_font.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_fuzzer.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_fuzzer.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_fuzzer.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_fuzzer.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_harness.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_harness.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_harness.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_harness.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_imageBlit.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_imageBlit.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_imageBlit.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_imageBlit.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_imageBlitBlend.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_imageBlitBlend.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_imageBlitBlend.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_imageBlitBlend.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_imageFace.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_imageFace.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_imageFace.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_imageFace.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_imagePrimitives.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_imagePrimitives.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_imagePrimitives.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_imagePrimitives.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_imagePrimitivesBlend.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_imagePrimitivesBlend.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_imagePrimitivesBlend.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_imagePrimitivesBlend.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_log.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_log.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_log.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_log.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_md5.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_md5.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_md5.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_md5.c
diff --git a/jni/SDL2-2.0.5/src/test/SDL_test_random.c b/love/src/jni/SDL2-2.0.5/src/test/SDL_test_random.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/test/SDL_test_random.c
rename to love/src/jni/SDL2-2.0.5/src/test/SDL_test_random.c
diff --git a/jni/SDL2-2.0.5/src/thread/SDL_systhread.h b/love/src/jni/SDL2-2.0.5/src/thread/SDL_systhread.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/SDL_systhread.h
rename to love/src/jni/SDL2-2.0.5/src/thread/SDL_systhread.h
diff --git a/jni/SDL2-2.0.5/src/thread/SDL_thread.c b/love/src/jni/SDL2-2.0.5/src/thread/SDL_thread.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/SDL_thread.c
rename to love/src/jni/SDL2-2.0.5/src/thread/SDL_thread.c
diff --git a/jni/SDL2-2.0.5/src/thread/SDL_thread_c.h b/love/src/jni/SDL2-2.0.5/src/thread/SDL_thread_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/SDL_thread_c.h
rename to love/src/jni/SDL2-2.0.5/src/thread/SDL_thread_c.h
diff --git a/jni/SDL2-2.0.5/src/thread/generic/SDL_syscond.c b/love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_syscond.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/generic/SDL_syscond.c
rename to love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_syscond.c
diff --git a/jni/SDL2-2.0.5/src/thread/generic/SDL_sysmutex.c b/love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_sysmutex.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/generic/SDL_sysmutex.c
rename to love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_sysmutex.c
diff --git a/jni/SDL2-2.0.5/src/thread/generic/SDL_sysmutex_c.h b/love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_sysmutex_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/generic/SDL_sysmutex_c.h
rename to love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_sysmutex_c.h
diff --git a/jni/SDL2-2.0.5/src/thread/generic/SDL_syssem.c b/love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_syssem.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/generic/SDL_syssem.c
rename to love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_syssem.c
diff --git a/jni/SDL2-2.0.5/src/thread/generic/SDL_systhread.c b/love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_systhread.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/generic/SDL_systhread.c
rename to love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_systhread.c
diff --git a/jni/SDL2-2.0.5/src/thread/generic/SDL_systhread_c.h b/love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_systhread_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/generic/SDL_systhread_c.h
rename to love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_systhread_c.h
diff --git a/jni/SDL2-2.0.5/src/thread/generic/SDL_systls.c b/love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_systls.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/generic/SDL_systls.c
rename to love/src/jni/SDL2-2.0.5/src/thread/generic/SDL_systls.c
diff --git a/jni/SDL2-2.0.5/src/thread/psp/SDL_syscond.c b/love/src/jni/SDL2-2.0.5/src/thread/psp/SDL_syscond.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/psp/SDL_syscond.c
rename to love/src/jni/SDL2-2.0.5/src/thread/psp/SDL_syscond.c
diff --git a/jni/SDL2-2.0.5/src/thread/psp/SDL_sysmutex.c b/love/src/jni/SDL2-2.0.5/src/thread/psp/SDL_sysmutex.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/psp/SDL_sysmutex.c
rename to love/src/jni/SDL2-2.0.5/src/thread/psp/SDL_sysmutex.c
diff --git a/jni/SDL2-2.0.5/src/thread/psp/SDL_sysmutex_c.h b/love/src/jni/SDL2-2.0.5/src/thread/psp/SDL_sysmutex_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/psp/SDL_sysmutex_c.h
rename to love/src/jni/SDL2-2.0.5/src/thread/psp/SDL_sysmutex_c.h
diff --git a/jni/SDL2-2.0.5/src/thread/psp/SDL_syssem.c b/love/src/jni/SDL2-2.0.5/src/thread/psp/SDL_syssem.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/psp/SDL_syssem.c
rename to love/src/jni/SDL2-2.0.5/src/thread/psp/SDL_syssem.c
diff --git a/jni/SDL2-2.0.5/src/thread/psp/SDL_systhread.c b/love/src/jni/SDL2-2.0.5/src/thread/psp/SDL_systhread.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/psp/SDL_systhread.c
rename to love/src/jni/SDL2-2.0.5/src/thread/psp/SDL_systhread.c
diff --git a/jni/SDL2-2.0.5/src/thread/psp/SDL_systhread_c.h b/love/src/jni/SDL2-2.0.5/src/thread/psp/SDL_systhread_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/psp/SDL_systhread_c.h
rename to love/src/jni/SDL2-2.0.5/src/thread/psp/SDL_systhread_c.h
diff --git a/jni/SDL2-2.0.5/src/thread/pthread/SDL_syscond.c b/love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_syscond.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/pthread/SDL_syscond.c
rename to love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_syscond.c
diff --git a/jni/SDL2-2.0.5/src/thread/pthread/SDL_sysmutex.c b/love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_sysmutex.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/pthread/SDL_sysmutex.c
rename to love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_sysmutex.c
diff --git a/jni/SDL2-2.0.5/src/thread/pthread/SDL_sysmutex_c.h b/love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_sysmutex_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/pthread/SDL_sysmutex_c.h
rename to love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_sysmutex_c.h
diff --git a/jni/SDL2-2.0.5/src/thread/pthread/SDL_syssem.c b/love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_syssem.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/pthread/SDL_syssem.c
rename to love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_syssem.c
diff --git a/jni/SDL2-2.0.5/src/thread/pthread/SDL_systhread.c b/love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_systhread.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/pthread/SDL_systhread.c
rename to love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_systhread.c
diff --git a/jni/SDL2-2.0.5/src/thread/pthread/SDL_systhread_c.h b/love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_systhread_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/pthread/SDL_systhread_c.h
rename to love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_systhread_c.h
diff --git a/jni/SDL2-2.0.5/src/thread/pthread/SDL_systls.c b/love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_systls.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/pthread/SDL_systls.c
rename to love/src/jni/SDL2-2.0.5/src/thread/pthread/SDL_systls.c
diff --git a/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_syscond.cpp b/love/src/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_syscond.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/stdcpp/SDL_syscond.cpp
rename to love/src/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_syscond.cpp
diff --git a/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_sysmutex.cpp b/love/src/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_sysmutex.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/stdcpp/SDL_sysmutex.cpp
rename to love/src/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_sysmutex.cpp
diff --git a/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_sysmutex_c.h b/love/src/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_sysmutex_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/stdcpp/SDL_sysmutex_c.h
rename to love/src/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_sysmutex_c.h
diff --git a/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_systhread.cpp b/love/src/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_systhread.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/stdcpp/SDL_systhread.cpp
rename to love/src/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_systhread.cpp
diff --git a/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_systhread_c.h b/love/src/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_systhread_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/stdcpp/SDL_systhread_c.h
rename to love/src/jni/SDL2-2.0.5/src/thread/stdcpp/SDL_systhread_c.h
diff --git a/jni/SDL2-2.0.5/src/thread/windows/SDL_sysmutex.c b/love/src/jni/SDL2-2.0.5/src/thread/windows/SDL_sysmutex.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/windows/SDL_sysmutex.c
rename to love/src/jni/SDL2-2.0.5/src/thread/windows/SDL_sysmutex.c
diff --git a/jni/SDL2-2.0.5/src/thread/windows/SDL_syssem.c b/love/src/jni/SDL2-2.0.5/src/thread/windows/SDL_syssem.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/windows/SDL_syssem.c
rename to love/src/jni/SDL2-2.0.5/src/thread/windows/SDL_syssem.c
diff --git a/jni/SDL2-2.0.5/src/thread/windows/SDL_systhread.c b/love/src/jni/SDL2-2.0.5/src/thread/windows/SDL_systhread.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/windows/SDL_systhread.c
rename to love/src/jni/SDL2-2.0.5/src/thread/windows/SDL_systhread.c
diff --git a/jni/SDL2-2.0.5/src/thread/windows/SDL_systhread_c.h b/love/src/jni/SDL2-2.0.5/src/thread/windows/SDL_systhread_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/windows/SDL_systhread_c.h
rename to love/src/jni/SDL2-2.0.5/src/thread/windows/SDL_systhread_c.h
diff --git a/jni/SDL2-2.0.5/src/thread/windows/SDL_systls.c b/love/src/jni/SDL2-2.0.5/src/thread/windows/SDL_systls.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/thread/windows/SDL_systls.c
rename to love/src/jni/SDL2-2.0.5/src/thread/windows/SDL_systls.c
diff --git a/jni/SDL2-2.0.5/src/timer/SDL_timer.c b/love/src/jni/SDL2-2.0.5/src/timer/SDL_timer.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/timer/SDL_timer.c
rename to love/src/jni/SDL2-2.0.5/src/timer/SDL_timer.c
diff --git a/jni/SDL2-2.0.5/src/timer/SDL_timer_c.h b/love/src/jni/SDL2-2.0.5/src/timer/SDL_timer_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/timer/SDL_timer_c.h
rename to love/src/jni/SDL2-2.0.5/src/timer/SDL_timer_c.h
diff --git a/jni/SDL2-2.0.5/src/timer/dummy/SDL_systimer.c b/love/src/jni/SDL2-2.0.5/src/timer/dummy/SDL_systimer.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/timer/dummy/SDL_systimer.c
rename to love/src/jni/SDL2-2.0.5/src/timer/dummy/SDL_systimer.c
diff --git a/jni/SDL2-2.0.5/src/timer/haiku/SDL_systimer.c b/love/src/jni/SDL2-2.0.5/src/timer/haiku/SDL_systimer.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/timer/haiku/SDL_systimer.c
rename to love/src/jni/SDL2-2.0.5/src/timer/haiku/SDL_systimer.c
diff --git a/jni/SDL2-2.0.5/src/timer/psp/SDL_systimer.c b/love/src/jni/SDL2-2.0.5/src/timer/psp/SDL_systimer.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/timer/psp/SDL_systimer.c
rename to love/src/jni/SDL2-2.0.5/src/timer/psp/SDL_systimer.c
diff --git a/jni/SDL2-2.0.5/src/timer/unix/SDL_systimer.c b/love/src/jni/SDL2-2.0.5/src/timer/unix/SDL_systimer.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/timer/unix/SDL_systimer.c
rename to love/src/jni/SDL2-2.0.5/src/timer/unix/SDL_systimer.c
diff --git a/jni/SDL2-2.0.5/src/timer/windows/SDL_systimer.c b/love/src/jni/SDL2-2.0.5/src/timer/windows/SDL_systimer.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/timer/windows/SDL_systimer.c
rename to love/src/jni/SDL2-2.0.5/src/timer/windows/SDL_systimer.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_RLEaccel.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_RLEaccel.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_RLEaccel.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_RLEaccel.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_RLEaccel_c.h b/love/src/jni/SDL2-2.0.5/src/video/SDL_RLEaccel_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_RLEaccel_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_RLEaccel_c.h
diff --git a/jni/SDL2-2.0.5/src/video/SDL_blit.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_blit.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_blit.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_blit.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_blit.h b/love/src/jni/SDL2-2.0.5/src/video/SDL_blit.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_blit.h
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_blit.h
diff --git a/jni/SDL2-2.0.5/src/video/SDL_blit_0.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_blit_0.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_blit_0.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_blit_0.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_blit_1.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_blit_1.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_blit_1.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_blit_1.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_blit_A.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_blit_A.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_blit_A.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_blit_A.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_blit_N.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_blit_N.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_blit_N.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_blit_N.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_blit_auto.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_blit_auto.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_blit_auto.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_blit_auto.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_blit_auto.h b/love/src/jni/SDL2-2.0.5/src/video/SDL_blit_auto.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_blit_auto.h
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_blit_auto.h
diff --git a/jni/SDL2-2.0.5/src/video/SDL_blit_copy.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_blit_copy.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_blit_copy.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_blit_copy.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_blit_copy.h b/love/src/jni/SDL2-2.0.5/src/video/SDL_blit_copy.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_blit_copy.h
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_blit_copy.h
diff --git a/jni/SDL2-2.0.5/src/video/SDL_blit_slow.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_blit_slow.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_blit_slow.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_blit_slow.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_blit_slow.h b/love/src/jni/SDL2-2.0.5/src/video/SDL_blit_slow.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_blit_slow.h
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_blit_slow.h
diff --git a/jni/SDL2-2.0.5/src/video/SDL_bmp.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_bmp.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_bmp.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_bmp.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_clipboard.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_clipboard.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_clipboard.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_clipboard.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_egl.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_egl.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_egl.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_egl.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_egl_c.h b/love/src/jni/SDL2-2.0.5/src/video/SDL_egl_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_egl_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_egl_c.h
diff --git a/jni/SDL2-2.0.5/src/video/SDL_fillrect.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_fillrect.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_fillrect.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_fillrect.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_pixels.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_pixels.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_pixels.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_pixels.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_pixels_c.h b/love/src/jni/SDL2-2.0.5/src/video/SDL_pixels_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_pixels_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_pixels_c.h
diff --git a/jni/SDL2-2.0.5/src/video/SDL_rect.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_rect.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_rect.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_rect.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_rect_c.h b/love/src/jni/SDL2-2.0.5/src/video/SDL_rect_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_rect_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_rect_c.h
diff --git a/jni/SDL2-2.0.5/src/video/SDL_shape.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_shape.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_shape.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_shape.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_shape_internals.h b/love/src/jni/SDL2-2.0.5/src/video/SDL_shape_internals.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_shape_internals.h
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_shape_internals.h
diff --git a/jni/SDL2-2.0.5/src/video/SDL_stretch.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_stretch.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_stretch.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_stretch.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_surface.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_surface.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_surface.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_surface.c
diff --git a/jni/SDL2-2.0.5/src/video/SDL_sysvideo.h b/love/src/jni/SDL2-2.0.5/src/video/SDL_sysvideo.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_sysvideo.h
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_sysvideo.h
diff --git a/jni/SDL2-2.0.5/src/video/SDL_video.c b/love/src/jni/SDL2-2.0.5/src/video/SDL_video.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/SDL_video.c
rename to love/src/jni/SDL2-2.0.5/src/video/SDL_video.c
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidclipboard.c b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidclipboard.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidclipboard.c
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidclipboard.c
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidclipboard.h b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidclipboard.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidclipboard.h
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidclipboard.h
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidevents.c b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidevents.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidevents.c
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidevents.c
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidevents.h b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidevents.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidevents.h
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidevents.h
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidgl.c b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidgl.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidgl.c
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidgl.c
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidkeyboard.c b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidkeyboard.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidkeyboard.c
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidkeyboard.c
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidkeyboard.h b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidkeyboard.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidkeyboard.h
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidkeyboard.h
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidmessagebox.c b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidmessagebox.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidmessagebox.c
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidmessagebox.c
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidmessagebox.h b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidmessagebox.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidmessagebox.h
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidmessagebox.h
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidmouse.c b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidmouse.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidmouse.c
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidmouse.c
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidmouse.h b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidmouse.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidmouse.h
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidmouse.h
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidtouch.c b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidtouch.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidtouch.c
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidtouch.c
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidtouch.h b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidtouch.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidtouch.h
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidtouch.h
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidvideo.c b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidvideo.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidvideo.c
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidvideo.c
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidvideo.h b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidvideo.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidvideo.h
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidvideo.h
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidwindow.c b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidwindow.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidwindow.c
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidwindow.c
diff --git a/jni/SDL2-2.0.5/src/video/android/SDL_androidwindow.h b/love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidwindow.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/android/SDL_androidwindow.h
rename to love/src/jni/SDL2-2.0.5/src/video/android/SDL_androidwindow.h
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaclipboard.h b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaclipboard.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaclipboard.h
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaclipboard.h
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaclipboard.m b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaclipboard.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaclipboard.m
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaclipboard.m
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaevents.h b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaevents.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaevents.h
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaevents.h
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaevents.m b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaevents.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaevents.m
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaevents.m
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoakeyboard.h b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoakeyboard.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoakeyboard.h
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoakeyboard.h
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoakeyboard.m b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoakeyboard.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoakeyboard.m
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoakeyboard.m
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamessagebox.h b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamessagebox.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamessagebox.h
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamessagebox.h
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamessagebox.m b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamessagebox.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamessagebox.m
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamessagebox.m
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamodes.h b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamodes.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamodes.h
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamodes.h
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamodes.m b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamodes.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamodes.m
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamodes.m
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamouse.h b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamouse.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamouse.h
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamouse.h
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamouse.m b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamouse.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamouse.m
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamouse.m
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamousetap.h b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamousetap.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamousetap.h
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamousetap.h
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamousetap.m b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamousetap.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamousetap.m
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoamousetap.m
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaopengl.h b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaopengl.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaopengl.h
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaopengl.h
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaopengl.m b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaopengl.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaopengl.m
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoaopengl.m
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoashape.h b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoashape.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoashape.h
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoashape.h
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoashape.m b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoashape.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoashape.m
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoashape.m
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoavideo.h b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoavideo.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoavideo.h
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoavideo.h
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoavideo.m b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoavideo.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoavideo.m
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoavideo.m
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoawindow.h b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoawindow.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoawindow.h
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoawindow.h
diff --git a/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoawindow.m b/love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoawindow.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoawindow.m
rename to love/src/jni/SDL2-2.0.5/src/video/cocoa/SDL_cocoawindow.m
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_WM.c b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_WM.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_WM.c
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_WM.c
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_WM.h b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_WM.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_WM.h
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_WM.h
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_dyn.c b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_dyn.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_dyn.c
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_dyn.c
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_dyn.h b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_dyn.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_dyn.h
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_dyn.h
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_events.c b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_events.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_events.c
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_events.c
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_events.h b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_events.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_events.h
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_events.h
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_modes.c b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_modes.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_modes.c
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_modes.c
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_modes.h b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_modes.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_modes.h
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_modes.h
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_mouse.c b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_mouse.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_mouse.c
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_mouse.c
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_mouse.h b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_mouse.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_mouse.h
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_mouse.h
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_opengl.c b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_opengl.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_opengl.c
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_opengl.c
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_opengl.h b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_opengl.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_opengl.h
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_opengl.h
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_render.c b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_render.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_render.c
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_render.c
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_render.h b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_render.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_render.h
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_render.h
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_shape.c b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_shape.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_shape.c
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_shape.c
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_shape.h b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_shape.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_shape.h
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_shape.h
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_video.c b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_video.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_video.c
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_video.c
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_video.h b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_video.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_video.h
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_video.h
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_window.c b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_window.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_window.c
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_window.c
diff --git a/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_window.h b/love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_window.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_window.h
rename to love/src/jni/SDL2-2.0.5/src/video/directfb/SDL_DirectFB_window.h
diff --git a/jni/SDL2-2.0.5/src/video/dummy/SDL_nullevents.c b/love/src/jni/SDL2-2.0.5/src/video/dummy/SDL_nullevents.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/dummy/SDL_nullevents.c
rename to love/src/jni/SDL2-2.0.5/src/video/dummy/SDL_nullevents.c
diff --git a/jni/SDL2-2.0.5/src/video/dummy/SDL_nullevents_c.h b/love/src/jni/SDL2-2.0.5/src/video/dummy/SDL_nullevents_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/dummy/SDL_nullevents_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/dummy/SDL_nullevents_c.h
diff --git a/jni/SDL2-2.0.5/src/video/dummy/SDL_nullframebuffer.c b/love/src/jni/SDL2-2.0.5/src/video/dummy/SDL_nullframebuffer.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/dummy/SDL_nullframebuffer.c
rename to love/src/jni/SDL2-2.0.5/src/video/dummy/SDL_nullframebuffer.c
diff --git a/jni/SDL2-2.0.5/src/video/dummy/SDL_nullframebuffer_c.h b/love/src/jni/SDL2-2.0.5/src/video/dummy/SDL_nullframebuffer_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/dummy/SDL_nullframebuffer_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/dummy/SDL_nullframebuffer_c.h
diff --git a/jni/SDL2-2.0.5/src/video/dummy/SDL_nullvideo.c b/love/src/jni/SDL2-2.0.5/src/video/dummy/SDL_nullvideo.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/dummy/SDL_nullvideo.c
rename to love/src/jni/SDL2-2.0.5/src/video/dummy/SDL_nullvideo.c
diff --git a/jni/SDL2-2.0.5/src/video/dummy/SDL_nullvideo.h b/love/src/jni/SDL2-2.0.5/src/video/dummy/SDL_nullvideo.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/dummy/SDL_nullvideo.h
rename to love/src/jni/SDL2-2.0.5/src/video/dummy/SDL_nullvideo.h
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_BWin.h b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_BWin.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_BWin.h
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_BWin.h
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bclipboard.cc b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bclipboard.cc
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bclipboard.cc
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bclipboard.cc
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bclipboard.h b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bclipboard.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bclipboard.h
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bclipboard.h
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bevents.cc b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bevents.cc
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bevents.cc
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bevents.cc
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bevents.h b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bevents.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bevents.h
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bevents.h
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bframebuffer.cc b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bframebuffer.cc
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bframebuffer.cc
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bframebuffer.cc
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bframebuffer.h b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bframebuffer.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bframebuffer.h
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bframebuffer.h
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bkeyboard.cc b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bkeyboard.cc
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bkeyboard.cc
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bkeyboard.cc
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bkeyboard.h b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bkeyboard.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bkeyboard.h
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bkeyboard.h
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bmodes.cc b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bmodes.cc
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bmodes.cc
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bmodes.cc
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bmodes.h b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bmodes.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bmodes.h
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bmodes.h
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bopengl.cc b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bopengl.cc
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bopengl.cc
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bopengl.cc
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bopengl.h b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bopengl.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bopengl.h
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bopengl.h
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bvideo.cc b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bvideo.cc
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bvideo.cc
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bvideo.cc
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bvideo.h b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bvideo.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bvideo.h
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bvideo.h
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bwindow.cc b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bwindow.cc
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bwindow.cc
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bwindow.cc
diff --git a/jni/SDL2-2.0.5/src/video/haiku/SDL_bwindow.h b/love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bwindow.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/haiku/SDL_bwindow.h
rename to love/src/jni/SDL2-2.0.5/src/video/haiku/SDL_bwindow.h
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_mirdyn.c b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirdyn.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_mirdyn.c
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirdyn.c
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_mirdyn.h b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirdyn.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_mirdyn.h
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirdyn.h
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_mirevents.c b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirevents.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_mirevents.c
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirevents.c
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_mirevents.h b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirevents.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_mirevents.h
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirevents.h
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_mirframebuffer.c b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirframebuffer.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_mirframebuffer.c
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirframebuffer.c
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_mirframebuffer.h b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirframebuffer.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_mirframebuffer.h
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirframebuffer.h
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_mirmouse.c b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirmouse.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_mirmouse.c
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirmouse.c
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_mirmouse.h b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirmouse.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_mirmouse.h
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirmouse.h
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_miropengl.c b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_miropengl.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_miropengl.c
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_miropengl.c
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_miropengl.h b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_miropengl.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_miropengl.h
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_miropengl.h
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_mirsym.h b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirsym.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_mirsym.h
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirsym.h
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_mirvideo.c b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirvideo.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_mirvideo.c
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirvideo.c
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_mirvideo.h b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirvideo.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_mirvideo.h
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirvideo.h
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_mirwindow.c b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirwindow.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_mirwindow.c
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirwindow.c
diff --git a/jni/SDL2-2.0.5/src/video/mir/SDL_mirwindow.h b/love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirwindow.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/mir/SDL_mirwindow.h
rename to love/src/jni/SDL2-2.0.5/src/video/mir/SDL_mirwindow.h
diff --git a/jni/SDL2-2.0.5/src/video/nacl/SDL_naclevents.c b/love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclevents.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/nacl/SDL_naclevents.c
rename to love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclevents.c
diff --git a/jni/SDL2-2.0.5/src/video/nacl/SDL_naclevents_c.h b/love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclevents_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/nacl/SDL_naclevents_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclevents_c.h
diff --git a/jni/SDL2-2.0.5/src/video/nacl/SDL_naclglue.c b/love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclglue.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/nacl/SDL_naclglue.c
rename to love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclglue.c
diff --git a/jni/SDL2-2.0.5/src/video/nacl/SDL_naclopengles.c b/love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclopengles.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/nacl/SDL_naclopengles.c
rename to love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclopengles.c
diff --git a/jni/SDL2-2.0.5/src/video/nacl/SDL_naclopengles.h b/love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclopengles.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/nacl/SDL_naclopengles.h
rename to love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclopengles.h
diff --git a/jni/SDL2-2.0.5/src/video/nacl/SDL_naclvideo.c b/love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclvideo.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/nacl/SDL_naclvideo.c
rename to love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclvideo.c
diff --git a/jni/SDL2-2.0.5/src/video/nacl/SDL_naclvideo.h b/love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclvideo.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/nacl/SDL_naclvideo.h
rename to love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclvideo.h
diff --git a/jni/SDL2-2.0.5/src/video/nacl/SDL_naclwindow.c b/love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclwindow.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/nacl/SDL_naclwindow.c
rename to love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclwindow.c
diff --git a/jni/SDL2-2.0.5/src/video/nacl/SDL_naclwindow.h b/love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclwindow.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/nacl/SDL_naclwindow.h
rename to love/src/jni/SDL2-2.0.5/src/video/nacl/SDL_naclwindow.h
diff --git a/jni/SDL2-2.0.5/src/video/pandora/SDL_pandora.c b/love/src/jni/SDL2-2.0.5/src/video/pandora/SDL_pandora.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/pandora/SDL_pandora.c
rename to love/src/jni/SDL2-2.0.5/src/video/pandora/SDL_pandora.c
diff --git a/jni/SDL2-2.0.5/src/video/pandora/SDL_pandora.h b/love/src/jni/SDL2-2.0.5/src/video/pandora/SDL_pandora.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/pandora/SDL_pandora.h
rename to love/src/jni/SDL2-2.0.5/src/video/pandora/SDL_pandora.h
diff --git a/jni/SDL2-2.0.5/src/video/pandora/SDL_pandora_events.c b/love/src/jni/SDL2-2.0.5/src/video/pandora/SDL_pandora_events.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/pandora/SDL_pandora_events.c
rename to love/src/jni/SDL2-2.0.5/src/video/pandora/SDL_pandora_events.c
diff --git a/jni/SDL2-2.0.5/src/video/pandora/SDL_pandora_events.h b/love/src/jni/SDL2-2.0.5/src/video/pandora/SDL_pandora_events.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/pandora/SDL_pandora_events.h
rename to love/src/jni/SDL2-2.0.5/src/video/pandora/SDL_pandora_events.h
diff --git a/jni/SDL2-2.0.5/src/video/psp/SDL_pspevents.c b/love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspevents.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/psp/SDL_pspevents.c
rename to love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspevents.c
diff --git a/jni/SDL2-2.0.5/src/video/psp/SDL_pspevents_c.h b/love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspevents_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/psp/SDL_pspevents_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspevents_c.h
diff --git a/jni/SDL2-2.0.5/src/video/psp/SDL_pspgl.c b/love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspgl.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/psp/SDL_pspgl.c
rename to love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspgl.c
diff --git a/jni/SDL2-2.0.5/src/video/psp/SDL_pspgl_c.h b/love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspgl_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/psp/SDL_pspgl_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspgl_c.h
diff --git a/jni/SDL2-2.0.5/src/video/psp/SDL_pspmouse.c b/love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspmouse.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/psp/SDL_pspmouse.c
rename to love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspmouse.c
diff --git a/jni/SDL2-2.0.5/src/video/psp/SDL_pspmouse_c.h b/love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspmouse_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/psp/SDL_pspmouse_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspmouse_c.h
diff --git a/jni/SDL2-2.0.5/src/video/psp/SDL_pspvideo.c b/love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspvideo.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/psp/SDL_pspvideo.c
rename to love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspvideo.c
diff --git a/jni/SDL2-2.0.5/src/video/psp/SDL_pspvideo.h b/love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspvideo.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/psp/SDL_pspvideo.h
rename to love/src/jni/SDL2-2.0.5/src/video/psp/SDL_pspvideo.h
diff --git a/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpievents.c b/love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpievents.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/raspberry/SDL_rpievents.c
rename to love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpievents.c
diff --git a/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpievents_c.h b/love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpievents_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/raspberry/SDL_rpievents_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpievents_c.h
diff --git a/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpimouse.c b/love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpimouse.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/raspberry/SDL_rpimouse.c
rename to love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpimouse.c
diff --git a/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpimouse.h b/love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpimouse.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/raspberry/SDL_rpimouse.h
rename to love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpimouse.h
diff --git a/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpiopengles.c b/love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpiopengles.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/raspberry/SDL_rpiopengles.c
rename to love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpiopengles.c
diff --git a/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpiopengles.h b/love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpiopengles.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/raspberry/SDL_rpiopengles.h
rename to love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpiopengles.h
diff --git a/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpivideo.c b/love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpivideo.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/raspberry/SDL_rpivideo.c
rename to love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpivideo.c
diff --git a/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpivideo.h b/love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpivideo.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/raspberry/SDL_rpivideo.h
rename to love/src/jni/SDL2-2.0.5/src/video/raspberry/SDL_rpivideo.h
diff --git a/jni/SDL2-2.0.5/src/video/sdlgenblit.pl b/love/src/jni/SDL2-2.0.5/src/video/sdlgenblit.pl
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/sdlgenblit.pl
rename to love/src/jni/SDL2-2.0.5/src/video/sdlgenblit.pl
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitappdelegate.h b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitappdelegate.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitappdelegate.h
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitappdelegate.h
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitappdelegate.m b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitappdelegate.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitappdelegate.m
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitappdelegate.m
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitclipboard.h b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitclipboard.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitclipboard.h
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitclipboard.h
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitclipboard.m b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitclipboard.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitclipboard.m
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitclipboard.m
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitevents.h b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitevents.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitevents.h
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitevents.h
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitevents.m b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitevents.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitevents.m
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitevents.m
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmessagebox.h b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmessagebox.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmessagebox.h
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmessagebox.h
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmessagebox.m b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmessagebox.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmessagebox.m
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmessagebox.m
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmodes.h b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmodes.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmodes.h
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmodes.h
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmodes.m b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmodes.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmodes.m
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitmodes.m
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopengles.h b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopengles.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopengles.h
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopengles.h
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopengles.m b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopengles.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopengles.m
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopengles.m
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopenglview.h b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopenglview.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopenglview.h
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopenglview.h
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopenglview.m b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopenglview.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopenglview.m
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitopenglview.m
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitvideo.h b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitvideo.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitvideo.h
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitvideo.h
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitvideo.m b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitvideo.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitvideo.m
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitvideo.m
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitview.h b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitview.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitview.h
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitview.h
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitview.m b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitview.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitview.m
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitview.m
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitviewcontroller.h b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitviewcontroller.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitviewcontroller.h
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitviewcontroller.h
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitviewcontroller.m b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitviewcontroller.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitviewcontroller.m
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitviewcontroller.m
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitwindow.h b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitwindow.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitwindow.h
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitwindow.h
diff --git a/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitwindow.m b/love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitwindow.m
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/SDL_uikitwindow.m
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/SDL_uikitwindow.m
diff --git a/jni/SDL2-2.0.5/src/video/uikit/keyinfotable.h b/love/src/jni/SDL2-2.0.5/src/video/uikit/keyinfotable.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/uikit/keyinfotable.h
rename to love/src/jni/SDL2-2.0.5/src/video/uikit/keyinfotable.h
diff --git a/jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteopengles.c b/love/src/jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteopengles.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteopengles.c
rename to love/src/jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteopengles.c
diff --git a/jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteopengles.h b/love/src/jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteopengles.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteopengles.h
rename to love/src/jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteopengles.h
diff --git a/jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteplatform.c b/love/src/jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteplatform.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteplatform.c
rename to love/src/jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteplatform.c
diff --git a/jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteplatform.h b/love/src/jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteplatform.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteplatform.h
rename to love/src/jni/SDL2-2.0.5/src/video/vivante/SDL_vivanteplatform.h
diff --git a/jni/SDL2-2.0.5/src/video/vivante/SDL_vivantevideo.c b/love/src/jni/SDL2-2.0.5/src/video/vivante/SDL_vivantevideo.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/vivante/SDL_vivantevideo.c
rename to love/src/jni/SDL2-2.0.5/src/video/vivante/SDL_vivantevideo.c
diff --git a/jni/SDL2-2.0.5/src/video/vivante/SDL_vivantevideo.h b/love/src/jni/SDL2-2.0.5/src/video/vivante/SDL_vivantevideo.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/vivante/SDL_vivantevideo.h
rename to love/src/jni/SDL2-2.0.5/src/video/vivante/SDL_vivantevideo.h
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylanddyn.c b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylanddyn.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylanddyn.c
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylanddyn.c
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylanddyn.h b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylanddyn.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylanddyn.h
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylanddyn.h
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandevents.c b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandevents.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylandevents.c
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandevents.c
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandevents_c.h b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandevents_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylandevents_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandevents_c.h
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandmouse.c b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandmouse.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylandmouse.c
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandmouse.c
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandmouse.h b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandmouse.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylandmouse.h
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandmouse.h
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandopengles.c b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandopengles.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylandopengles.c
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandopengles.c
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandopengles.h b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandopengles.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylandopengles.h
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandopengles.h
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandsym.h b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandsym.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylandsym.h
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandsym.h
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandtouch.c b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandtouch.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylandtouch.c
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandtouch.c
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandtouch.h b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandtouch.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylandtouch.h
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandtouch.h
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandvideo.c b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandvideo.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylandvideo.c
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandvideo.c
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandvideo.h b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandvideo.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylandvideo.h
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandvideo.h
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandwindow.c b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandwindow.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylandwindow.c
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandwindow.c
diff --git a/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandwindow.h b/love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandwindow.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/wayland/SDL_waylandwindow.h
rename to love/src/jni/SDL2-2.0.5/src/video/wayland/SDL_waylandwindow.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_msctf.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_msctf.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_msctf.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_msctf.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_vkeys.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_vkeys.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_vkeys.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_vkeys.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsclipboard.c b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsclipboard.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsclipboard.c
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsclipboard.c
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsclipboard.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsclipboard.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsclipboard.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsclipboard.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsevents.c b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsevents.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsevents.c
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsevents.c
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsevents.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsevents.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsevents.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsevents.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsframebuffer.c b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsframebuffer.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsframebuffer.c
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsframebuffer.c
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsframebuffer.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsframebuffer.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsframebuffer.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsframebuffer.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowskeyboard.c b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowskeyboard.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowskeyboard.c
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowskeyboard.c
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowskeyboard.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowskeyboard.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowskeyboard.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowskeyboard.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmessagebox.c b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmessagebox.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsmessagebox.c
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmessagebox.c
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmessagebox.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmessagebox.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsmessagebox.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmessagebox.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmodes.c b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmodes.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsmodes.c
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmodes.c
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmodes.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmodes.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsmodes.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmodes.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmouse.c b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmouse.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsmouse.c
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmouse.c
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmouse.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmouse.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsmouse.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsmouse.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengl.c b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengl.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengl.c
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengl.c
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengl.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengl.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengl.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengl.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengles.c b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengles.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengles.c
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengles.c
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengles.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengles.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengles.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsopengles.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsshape.c b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsshape.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsshape.c
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsshape.c
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsshape.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsshape.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsshape.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsshape.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsvideo.c b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsvideo.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsvideo.c
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsvideo.c
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowsvideo.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsvideo.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowsvideo.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowsvideo.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowswindow.c b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowswindow.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowswindow.c
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowswindow.c
diff --git a/jni/SDL2-2.0.5/src/video/windows/SDL_windowswindow.h b/love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowswindow.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/SDL_windowswindow.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/SDL_windowswindow.h
diff --git a/jni/SDL2-2.0.5/src/video/windows/wmmsg.h b/love/src/jni/SDL2-2.0.5/src/video/windows/wmmsg.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/windows/wmmsg.h
rename to love/src/jni/SDL2-2.0.5/src/video/windows/wmmsg.h
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtevents.cpp b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtevents.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtevents.cpp
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtevents.cpp
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtevents_c.h b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtevents_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtevents_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtevents_c.h
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtgamebar.cpp b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtgamebar.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtgamebar.cpp
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtgamebar.cpp
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtgamebar_cpp.h b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtgamebar_cpp.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtgamebar_cpp.h
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtgamebar_cpp.h
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtkeyboard.cpp b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtkeyboard.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtkeyboard.cpp
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtkeyboard.cpp
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmessagebox.cpp b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmessagebox.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmessagebox.cpp
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmessagebox.cpp
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmessagebox.h b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmessagebox.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmessagebox.h
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmessagebox.h
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmouse.cpp b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmouse.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmouse.cpp
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmouse.cpp
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmouse_c.h b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmouse_c.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmouse_c.h
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtmouse_c.h
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtopengles.cpp b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtopengles.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtopengles.cpp
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtopengles.cpp
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtopengles.h b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtopengles.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtopengles.h
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtopengles.h
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtpointerinput.cpp b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtpointerinput.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtpointerinput.cpp
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtpointerinput.cpp
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtvideo.cpp b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtvideo.cpp
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtvideo.cpp
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtvideo.cpp
diff --git a/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtvideo_cpp.h b/love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtvideo_cpp.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/winrt/SDL_winrtvideo_cpp.h
rename to love/src/jni/SDL2-2.0.5/src/video/winrt/SDL_winrtvideo_cpp.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11clipboard.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11clipboard.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11clipboard.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11clipboard.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11clipboard.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11clipboard.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11clipboard.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11clipboard.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11dyn.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11dyn.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11dyn.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11dyn.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11dyn.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11dyn.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11dyn.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11dyn.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11events.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11events.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11events.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11events.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11events.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11events.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11events.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11events.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11framebuffer.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11framebuffer.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11framebuffer.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11framebuffer.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11framebuffer.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11framebuffer.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11framebuffer.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11framebuffer.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11keyboard.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11keyboard.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11keyboard.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11keyboard.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11keyboard.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11keyboard.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11keyboard.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11keyboard.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11messagebox.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11messagebox.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11messagebox.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11messagebox.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11messagebox.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11messagebox.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11messagebox.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11messagebox.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11modes.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11modes.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11modes.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11modes.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11modes.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11modes.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11modes.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11modes.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11mouse.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11mouse.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11mouse.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11mouse.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11mouse.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11mouse.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11mouse.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11mouse.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11opengl.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11opengl.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11opengl.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11opengl.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11opengl.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11opengl.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11opengl.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11opengl.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11opengles.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11opengles.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11opengles.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11opengles.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11opengles.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11opengles.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11opengles.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11opengles.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11shape.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11shape.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11shape.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11shape.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11shape.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11shape.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11shape.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11shape.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11sym.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11sym.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11sym.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11sym.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11touch.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11touch.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11touch.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11touch.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11touch.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11touch.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11touch.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11touch.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11video.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11video.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11video.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11video.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11video.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11video.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11video.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11video.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11window.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11window.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11window.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11window.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11window.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11window.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11window.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11window.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11xinput2.c b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11xinput2.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11xinput2.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11xinput2.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/SDL_x11xinput2.h b/love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11xinput2.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/SDL_x11xinput2.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/SDL_x11xinput2.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/edid-parse.c b/love/src/jni/SDL2-2.0.5/src/video/x11/edid-parse.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/edid-parse.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/edid-parse.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/edid.h b/love/src/jni/SDL2-2.0.5/src/video/x11/edid.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/edid.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/edid.h
diff --git a/jni/SDL2-2.0.5/src/video/x11/imKStoUCS.c b/love/src/jni/SDL2-2.0.5/src/video/x11/imKStoUCS.c
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/imKStoUCS.c
rename to love/src/jni/SDL2-2.0.5/src/video/x11/imKStoUCS.c
diff --git a/jni/SDL2-2.0.5/src/video/x11/imKStoUCS.h b/love/src/jni/SDL2-2.0.5/src/video/x11/imKStoUCS.h
similarity index 100%
rename from jni/SDL2-2.0.5/src/video/x11/imKStoUCS.h
rename to love/src/jni/SDL2-2.0.5/src/video/x11/imKStoUCS.h
diff --git a/jni/SDL2-2.0.5/test/COPYING b/love/src/jni/SDL2-2.0.5/test/COPYING
similarity index 100%
rename from jni/SDL2-2.0.5/test/COPYING
rename to love/src/jni/SDL2-2.0.5/test/COPYING
diff --git a/jni/SDL2-2.0.5/test/Makefile.in b/love/src/jni/SDL2-2.0.5/test/Makefile.in
similarity index 100%
rename from jni/SDL2-2.0.5/test/Makefile.in
rename to love/src/jni/SDL2-2.0.5/test/Makefile.in
diff --git a/jni/SDL2-2.0.5/test/README b/love/src/jni/SDL2-2.0.5/test/README
similarity index 100%
rename from jni/SDL2-2.0.5/test/README
rename to love/src/jni/SDL2-2.0.5/test/README
diff --git a/jni/SDL2-2.0.5/test/acinclude.m4 b/love/src/jni/SDL2-2.0.5/test/acinclude.m4
similarity index 100%
rename from jni/SDL2-2.0.5/test/acinclude.m4
rename to love/src/jni/SDL2-2.0.5/test/acinclude.m4
diff --git a/jni/SDL2-2.0.5/test/aclocal.m4 b/love/src/jni/SDL2-2.0.5/test/aclocal.m4
similarity index 100%
rename from jni/SDL2-2.0.5/test/aclocal.m4
rename to love/src/jni/SDL2-2.0.5/test/aclocal.m4
diff --git a/jni/SDL2-2.0.5/test/autogen.sh b/love/src/jni/SDL2-2.0.5/test/autogen.sh
similarity index 100%
rename from jni/SDL2-2.0.5/test/autogen.sh
rename to love/src/jni/SDL2-2.0.5/test/autogen.sh
diff --git a/jni/SDL2-2.0.5/test/axis.bmp b/love/src/jni/SDL2-2.0.5/test/axis.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/axis.bmp
rename to love/src/jni/SDL2-2.0.5/test/axis.bmp
diff --git a/jni/SDL2-2.0.5/test/button.bmp b/love/src/jni/SDL2-2.0.5/test/button.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/button.bmp
rename to love/src/jni/SDL2-2.0.5/test/button.bmp
diff --git a/jni/SDL2-2.0.5/test/checkkeys.c b/love/src/jni/SDL2-2.0.5/test/checkkeys.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/checkkeys.c
rename to love/src/jni/SDL2-2.0.5/test/checkkeys.c
diff --git a/jni/SDL2-2.0.5/test/configure b/love/src/jni/SDL2-2.0.5/test/configure
similarity index 100%
rename from jni/SDL2-2.0.5/test/configure
rename to love/src/jni/SDL2-2.0.5/test/configure
diff --git a/jni/SDL2-2.0.5/test/configure.in b/love/src/jni/SDL2-2.0.5/test/configure.in
similarity index 100%
rename from jni/SDL2-2.0.5/test/configure.in
rename to love/src/jni/SDL2-2.0.5/test/configure.in
diff --git a/jni/SDL2-2.0.5/test/controllermap.bmp b/love/src/jni/SDL2-2.0.5/test/controllermap.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/controllermap.bmp
rename to love/src/jni/SDL2-2.0.5/test/controllermap.bmp
diff --git a/jni/SDL2-2.0.5/test/controllermap.c b/love/src/jni/SDL2-2.0.5/test/controllermap.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/controllermap.c
rename to love/src/jni/SDL2-2.0.5/test/controllermap.c
diff --git a/jni/SDL2-2.0.5/test/gcc-fat.sh b/love/src/jni/SDL2-2.0.5/test/gcc-fat.sh
similarity index 100%
rename from jni/SDL2-2.0.5/test/gcc-fat.sh
rename to love/src/jni/SDL2-2.0.5/test/gcc-fat.sh
diff --git a/jni/SDL2-2.0.5/test/icon.bmp b/love/src/jni/SDL2-2.0.5/test/icon.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/icon.bmp
rename to love/src/jni/SDL2-2.0.5/test/icon.bmp
diff --git a/jni/SDL2-2.0.5/test/loopwave.c b/love/src/jni/SDL2-2.0.5/test/loopwave.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/loopwave.c
rename to love/src/jni/SDL2-2.0.5/test/loopwave.c
diff --git a/jni/SDL2-2.0.5/test/loopwavequeue.c b/love/src/jni/SDL2-2.0.5/test/loopwavequeue.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/loopwavequeue.c
rename to love/src/jni/SDL2-2.0.5/test/loopwavequeue.c
diff --git a/jni/SDL2-2.0.5/test/moose.dat b/love/src/jni/SDL2-2.0.5/test/moose.dat
similarity index 100%
rename from jni/SDL2-2.0.5/test/moose.dat
rename to love/src/jni/SDL2-2.0.5/test/moose.dat
diff --git a/jni/SDL2-2.0.5/test/nacl/Makefile b/love/src/jni/SDL2-2.0.5/test/nacl/Makefile
similarity index 100%
rename from jni/SDL2-2.0.5/test/nacl/Makefile
rename to love/src/jni/SDL2-2.0.5/test/nacl/Makefile
diff --git a/jni/SDL2-2.0.5/test/nacl/background.js b/love/src/jni/SDL2-2.0.5/test/nacl/background.js
similarity index 100%
rename from jni/SDL2-2.0.5/test/nacl/background.js
rename to love/src/jni/SDL2-2.0.5/test/nacl/background.js
diff --git a/jni/SDL2-2.0.5/test/nacl/common.js b/love/src/jni/SDL2-2.0.5/test/nacl/common.js
similarity index 100%
rename from jni/SDL2-2.0.5/test/nacl/common.js
rename to love/src/jni/SDL2-2.0.5/test/nacl/common.js
diff --git a/jni/SDL2-2.0.5/test/nacl/index.html b/love/src/jni/SDL2-2.0.5/test/nacl/index.html
similarity index 100%
rename from jni/SDL2-2.0.5/test/nacl/index.html
rename to love/src/jni/SDL2-2.0.5/test/nacl/index.html
diff --git a/jni/SDL2-2.0.5/test/nacl/manifest.json b/love/src/jni/SDL2-2.0.5/test/nacl/manifest.json
similarity index 100%
rename from jni/SDL2-2.0.5/test/nacl/manifest.json
rename to love/src/jni/SDL2-2.0.5/test/nacl/manifest.json
diff --git a/jni/SDL2-2.0.5/test/picture.xbm b/love/src/jni/SDL2-2.0.5/test/picture.xbm
similarity index 100%
rename from jni/SDL2-2.0.5/test/picture.xbm
rename to love/src/jni/SDL2-2.0.5/test/picture.xbm
diff --git a/jni/SDL2-2.0.5/test/relative_mode.markdown b/love/src/jni/SDL2-2.0.5/test/relative_mode.markdown
similarity index 100%
rename from jni/SDL2-2.0.5/test/relative_mode.markdown
rename to love/src/jni/SDL2-2.0.5/test/relative_mode.markdown
diff --git a/jni/SDL2-2.0.5/test/sample.bmp b/love/src/jni/SDL2-2.0.5/test/sample.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/sample.bmp
rename to love/src/jni/SDL2-2.0.5/test/sample.bmp
diff --git a/jni/SDL2-2.0.5/test/sample.wav b/love/src/jni/SDL2-2.0.5/test/sample.wav
similarity index 100%
rename from jni/SDL2-2.0.5/test/sample.wav
rename to love/src/jni/SDL2-2.0.5/test/sample.wav
diff --git a/jni/SDL2-2.0.5/test/shapes/p01_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p01_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p01_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p01_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p01_shape32alpha.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p01_shape32alpha.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p01_shape32alpha.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p01_shape32alpha.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p01_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p01_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p01_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p01_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p02_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p02_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p02_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p02_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p02_shape32alpha.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p02_shape32alpha.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p02_shape32alpha.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p02_shape32alpha.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p02_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p02_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p02_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p02_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p03_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p03_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p03_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p03_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p03_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p03_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p03_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p03_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p04_shape1.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p04_shape1.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p04_shape1.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p04_shape1.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p04_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p04_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p04_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p04_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p04_shape32alpha.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p04_shape32alpha.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p04_shape32alpha.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p04_shape32alpha.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p04_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p04_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p04_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p04_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p05_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p05_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p05_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p05_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p06_shape1alpha.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p06_shape1alpha.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p06_shape1alpha.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p06_shape1alpha.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p06_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p06_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p06_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p06_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p06_shape32alpha.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p06_shape32alpha.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p06_shape32alpha.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p06_shape32alpha.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p06_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p06_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p06_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p06_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p07_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p07_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p07_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p07_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p07_shape32alpha.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p07_shape32alpha.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p07_shape32alpha.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p07_shape32alpha.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p07_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p07_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p07_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p07_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p08_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p08_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p08_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p08_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p08_shape32alpha.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p08_shape32alpha.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p08_shape32alpha.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p08_shape32alpha.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p08_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p08_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p08_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p08_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p09_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p09_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p09_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p09_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p09_shape32alpha.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p09_shape32alpha.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p09_shape32alpha.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p09_shape32alpha.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p09_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p09_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p09_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p09_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p10_shape1.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p10_shape1.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p10_shape1.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p10_shape1.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p10_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p10_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p10_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p10_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p10_shape32alpha.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p10_shape32alpha.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p10_shape32alpha.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p10_shape32alpha.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p10_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p10_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p10_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p10_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p11_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p11_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p11_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p11_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p11_shape32alpha.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p11_shape32alpha.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p11_shape32alpha.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p11_shape32alpha.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p11_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p11_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p11_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p11_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p12_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p12_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p12_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p12_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p12_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p12_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p12_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p12_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p13_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p13_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p13_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p13_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p13_shape32alpha.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p13_shape32alpha.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p13_shape32alpha.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p13_shape32alpha.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p13_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p13_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p13_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p13_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p14_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p14_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p14_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p14_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p14_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p14_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p14_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p14_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p15_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p15_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p15_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p15_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p15_shape32alpha.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p15_shape32alpha.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p15_shape32alpha.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p15_shape32alpha.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p15_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p15_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p15_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p15_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p16_shape1.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p16_shape1.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p16_shape1.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p16_shape1.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p16_shape24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p16_shape24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p16_shape24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p16_shape24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/p16_shape8.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/p16_shape8.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/p16_shape8.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/p16_shape8.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/trollface_24.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/trollface_24.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/trollface_24.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/trollface_24.bmp
diff --git a/jni/SDL2-2.0.5/test/shapes/trollface_32alpha.bmp b/love/src/jni/SDL2-2.0.5/test/shapes/trollface_32alpha.bmp
similarity index 100%
rename from jni/SDL2-2.0.5/test/shapes/trollface_32alpha.bmp
rename to love/src/jni/SDL2-2.0.5/test/shapes/trollface_32alpha.bmp
diff --git a/jni/SDL2-2.0.5/test/testatomic.c b/love/src/jni/SDL2-2.0.5/test/testatomic.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testatomic.c
rename to love/src/jni/SDL2-2.0.5/test/testatomic.c
diff --git a/jni/SDL2-2.0.5/test/testaudiocapture.c b/love/src/jni/SDL2-2.0.5/test/testaudiocapture.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testaudiocapture.c
rename to love/src/jni/SDL2-2.0.5/test/testaudiocapture.c
diff --git a/jni/SDL2-2.0.5/test/testaudiohotplug.c b/love/src/jni/SDL2-2.0.5/test/testaudiohotplug.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testaudiohotplug.c
rename to love/src/jni/SDL2-2.0.5/test/testaudiohotplug.c
diff --git a/jni/SDL2-2.0.5/test/testaudioinfo.c b/love/src/jni/SDL2-2.0.5/test/testaudioinfo.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testaudioinfo.c
rename to love/src/jni/SDL2-2.0.5/test/testaudioinfo.c
diff --git a/jni/SDL2-2.0.5/test/testautomation.c b/love/src/jni/SDL2-2.0.5/test/testautomation.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_audio.c b/love/src/jni/SDL2-2.0.5/test/testautomation_audio.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_audio.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_audio.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_clipboard.c b/love/src/jni/SDL2-2.0.5/test/testautomation_clipboard.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_clipboard.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_clipboard.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_events.c b/love/src/jni/SDL2-2.0.5/test/testautomation_events.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_events.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_events.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_hints.c b/love/src/jni/SDL2-2.0.5/test/testautomation_hints.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_hints.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_hints.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_keyboard.c b/love/src/jni/SDL2-2.0.5/test/testautomation_keyboard.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_keyboard.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_keyboard.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_main.c b/love/src/jni/SDL2-2.0.5/test/testautomation_main.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_main.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_main.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_mouse.c b/love/src/jni/SDL2-2.0.5/test/testautomation_mouse.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_mouse.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_mouse.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_pixels.c b/love/src/jni/SDL2-2.0.5/test/testautomation_pixels.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_pixels.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_pixels.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_platform.c b/love/src/jni/SDL2-2.0.5/test/testautomation_platform.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_platform.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_platform.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_rect.c b/love/src/jni/SDL2-2.0.5/test/testautomation_rect.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_rect.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_rect.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_render.c b/love/src/jni/SDL2-2.0.5/test/testautomation_render.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_render.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_render.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_rwops.c b/love/src/jni/SDL2-2.0.5/test/testautomation_rwops.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_rwops.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_rwops.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_sdltest.c b/love/src/jni/SDL2-2.0.5/test/testautomation_sdltest.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_sdltest.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_sdltest.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_stdlib.c b/love/src/jni/SDL2-2.0.5/test/testautomation_stdlib.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_stdlib.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_stdlib.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_suites.h b/love/src/jni/SDL2-2.0.5/test/testautomation_suites.h
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_suites.h
rename to love/src/jni/SDL2-2.0.5/test/testautomation_suites.h
diff --git a/jni/SDL2-2.0.5/test/testautomation_surface.c b/love/src/jni/SDL2-2.0.5/test/testautomation_surface.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_surface.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_surface.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_syswm.c b/love/src/jni/SDL2-2.0.5/test/testautomation_syswm.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_syswm.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_syswm.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_timer.c b/love/src/jni/SDL2-2.0.5/test/testautomation_timer.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_timer.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_timer.c
diff --git a/jni/SDL2-2.0.5/test/testautomation_video.c b/love/src/jni/SDL2-2.0.5/test/testautomation_video.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testautomation_video.c
rename to love/src/jni/SDL2-2.0.5/test/testautomation_video.c
diff --git a/jni/SDL2-2.0.5/test/testbounds.c b/love/src/jni/SDL2-2.0.5/test/testbounds.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testbounds.c
rename to love/src/jni/SDL2-2.0.5/test/testbounds.c
diff --git a/jni/SDL2-2.0.5/test/testcustomcursor.c b/love/src/jni/SDL2-2.0.5/test/testcustomcursor.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testcustomcursor.c
rename to love/src/jni/SDL2-2.0.5/test/testcustomcursor.c
diff --git a/jni/SDL2-2.0.5/test/testdisplayinfo.c b/love/src/jni/SDL2-2.0.5/test/testdisplayinfo.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testdisplayinfo.c
rename to love/src/jni/SDL2-2.0.5/test/testdisplayinfo.c
diff --git a/jni/SDL2-2.0.5/test/testdraw2.c b/love/src/jni/SDL2-2.0.5/test/testdraw2.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testdraw2.c
rename to love/src/jni/SDL2-2.0.5/test/testdraw2.c
diff --git a/jni/SDL2-2.0.5/test/testdrawchessboard.c b/love/src/jni/SDL2-2.0.5/test/testdrawchessboard.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testdrawchessboard.c
rename to love/src/jni/SDL2-2.0.5/test/testdrawchessboard.c
diff --git a/jni/SDL2-2.0.5/test/testdropfile.c b/love/src/jni/SDL2-2.0.5/test/testdropfile.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testdropfile.c
rename to love/src/jni/SDL2-2.0.5/test/testdropfile.c
diff --git a/jni/SDL2-2.0.5/test/testerror.c b/love/src/jni/SDL2-2.0.5/test/testerror.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testerror.c
rename to love/src/jni/SDL2-2.0.5/test/testerror.c
diff --git a/jni/SDL2-2.0.5/test/testfile.c b/love/src/jni/SDL2-2.0.5/test/testfile.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testfile.c
rename to love/src/jni/SDL2-2.0.5/test/testfile.c
diff --git a/jni/SDL2-2.0.5/test/testfilesystem.c b/love/src/jni/SDL2-2.0.5/test/testfilesystem.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testfilesystem.c
rename to love/src/jni/SDL2-2.0.5/test/testfilesystem.c
diff --git a/jni/SDL2-2.0.5/test/testgamecontroller.c b/love/src/jni/SDL2-2.0.5/test/testgamecontroller.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testgamecontroller.c
rename to love/src/jni/SDL2-2.0.5/test/testgamecontroller.c
diff --git a/jni/SDL2-2.0.5/test/testgesture.c b/love/src/jni/SDL2-2.0.5/test/testgesture.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testgesture.c
rename to love/src/jni/SDL2-2.0.5/test/testgesture.c
diff --git a/jni/SDL2-2.0.5/test/testgl2.c b/love/src/jni/SDL2-2.0.5/test/testgl2.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testgl2.c
rename to love/src/jni/SDL2-2.0.5/test/testgl2.c
diff --git a/jni/SDL2-2.0.5/test/testgles.c b/love/src/jni/SDL2-2.0.5/test/testgles.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testgles.c
rename to love/src/jni/SDL2-2.0.5/test/testgles.c
diff --git a/jni/SDL2-2.0.5/test/testgles2.c b/love/src/jni/SDL2-2.0.5/test/testgles2.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testgles2.c
rename to love/src/jni/SDL2-2.0.5/test/testgles2.c
diff --git a/jni/SDL2-2.0.5/test/testhaptic.c b/love/src/jni/SDL2-2.0.5/test/testhaptic.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testhaptic.c
rename to love/src/jni/SDL2-2.0.5/test/testhaptic.c
diff --git a/jni/SDL2-2.0.5/test/testhittesting.c b/love/src/jni/SDL2-2.0.5/test/testhittesting.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testhittesting.c
rename to love/src/jni/SDL2-2.0.5/test/testhittesting.c
diff --git a/jni/SDL2-2.0.5/test/testhotplug.c b/love/src/jni/SDL2-2.0.5/test/testhotplug.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testhotplug.c
rename to love/src/jni/SDL2-2.0.5/test/testhotplug.c
diff --git a/jni/SDL2-2.0.5/test/testiconv.c b/love/src/jni/SDL2-2.0.5/test/testiconv.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testiconv.c
rename to love/src/jni/SDL2-2.0.5/test/testiconv.c
diff --git a/jni/SDL2-2.0.5/test/testime.c b/love/src/jni/SDL2-2.0.5/test/testime.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testime.c
rename to love/src/jni/SDL2-2.0.5/test/testime.c
diff --git a/jni/SDL2-2.0.5/test/testintersections.c b/love/src/jni/SDL2-2.0.5/test/testintersections.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testintersections.c
rename to love/src/jni/SDL2-2.0.5/test/testintersections.c
diff --git a/jni/SDL2-2.0.5/test/testjoystick.c b/love/src/jni/SDL2-2.0.5/test/testjoystick.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testjoystick.c
rename to love/src/jni/SDL2-2.0.5/test/testjoystick.c
diff --git a/jni/SDL2-2.0.5/test/testkeys.c b/love/src/jni/SDL2-2.0.5/test/testkeys.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testkeys.c
rename to love/src/jni/SDL2-2.0.5/test/testkeys.c
diff --git a/jni/SDL2-2.0.5/test/testloadso.c b/love/src/jni/SDL2-2.0.5/test/testloadso.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testloadso.c
rename to love/src/jni/SDL2-2.0.5/test/testloadso.c
diff --git a/jni/SDL2-2.0.5/test/testlock.c b/love/src/jni/SDL2-2.0.5/test/testlock.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testlock.c
rename to love/src/jni/SDL2-2.0.5/test/testlock.c
diff --git a/jni/SDL2-2.0.5/test/testmessage.c b/love/src/jni/SDL2-2.0.5/test/testmessage.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testmessage.c
rename to love/src/jni/SDL2-2.0.5/test/testmessage.c
diff --git a/jni/SDL2-2.0.5/test/testmultiaudio.c b/love/src/jni/SDL2-2.0.5/test/testmultiaudio.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testmultiaudio.c
rename to love/src/jni/SDL2-2.0.5/test/testmultiaudio.c
diff --git a/jni/SDL2-2.0.5/test/testnative.c b/love/src/jni/SDL2-2.0.5/test/testnative.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testnative.c
rename to love/src/jni/SDL2-2.0.5/test/testnative.c
diff --git a/jni/SDL2-2.0.5/test/testnative.h b/love/src/jni/SDL2-2.0.5/test/testnative.h
similarity index 100%
rename from jni/SDL2-2.0.5/test/testnative.h
rename to love/src/jni/SDL2-2.0.5/test/testnative.h
diff --git a/jni/SDL2-2.0.5/test/testnativecocoa.m b/love/src/jni/SDL2-2.0.5/test/testnativecocoa.m
similarity index 100%
rename from jni/SDL2-2.0.5/test/testnativecocoa.m
rename to love/src/jni/SDL2-2.0.5/test/testnativecocoa.m
diff --git a/jni/SDL2-2.0.5/test/testnativew32.c b/love/src/jni/SDL2-2.0.5/test/testnativew32.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testnativew32.c
rename to love/src/jni/SDL2-2.0.5/test/testnativew32.c
diff --git a/jni/SDL2-2.0.5/test/testnativex11.c b/love/src/jni/SDL2-2.0.5/test/testnativex11.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testnativex11.c
rename to love/src/jni/SDL2-2.0.5/test/testnativex11.c
diff --git a/jni/SDL2-2.0.5/test/testoverlay2.c b/love/src/jni/SDL2-2.0.5/test/testoverlay2.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testoverlay2.c
rename to love/src/jni/SDL2-2.0.5/test/testoverlay2.c
diff --git a/jni/SDL2-2.0.5/test/testplatform.c b/love/src/jni/SDL2-2.0.5/test/testplatform.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testplatform.c
rename to love/src/jni/SDL2-2.0.5/test/testplatform.c
diff --git a/jni/SDL2-2.0.5/test/testpower.c b/love/src/jni/SDL2-2.0.5/test/testpower.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testpower.c
rename to love/src/jni/SDL2-2.0.5/test/testpower.c
diff --git a/jni/SDL2-2.0.5/test/testqsort.c b/love/src/jni/SDL2-2.0.5/test/testqsort.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testqsort.c
rename to love/src/jni/SDL2-2.0.5/test/testqsort.c
diff --git a/jni/SDL2-2.0.5/test/testrelative.c b/love/src/jni/SDL2-2.0.5/test/testrelative.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testrelative.c
rename to love/src/jni/SDL2-2.0.5/test/testrelative.c
diff --git a/jni/SDL2-2.0.5/test/testrendercopyex.c b/love/src/jni/SDL2-2.0.5/test/testrendercopyex.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testrendercopyex.c
rename to love/src/jni/SDL2-2.0.5/test/testrendercopyex.c
diff --git a/jni/SDL2-2.0.5/test/testrendertarget.c b/love/src/jni/SDL2-2.0.5/test/testrendertarget.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testrendertarget.c
rename to love/src/jni/SDL2-2.0.5/test/testrendertarget.c
diff --git a/jni/SDL2-2.0.5/test/testresample.c b/love/src/jni/SDL2-2.0.5/test/testresample.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testresample.c
rename to love/src/jni/SDL2-2.0.5/test/testresample.c
diff --git a/jni/SDL2-2.0.5/test/testrumble.c b/love/src/jni/SDL2-2.0.5/test/testrumble.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testrumble.c
rename to love/src/jni/SDL2-2.0.5/test/testrumble.c
diff --git a/jni/SDL2-2.0.5/test/testscale.c b/love/src/jni/SDL2-2.0.5/test/testscale.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testscale.c
rename to love/src/jni/SDL2-2.0.5/test/testscale.c
diff --git a/jni/SDL2-2.0.5/test/testsem.c b/love/src/jni/SDL2-2.0.5/test/testsem.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testsem.c
rename to love/src/jni/SDL2-2.0.5/test/testsem.c
diff --git a/jni/SDL2-2.0.5/test/testshader.c b/love/src/jni/SDL2-2.0.5/test/testshader.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testshader.c
rename to love/src/jni/SDL2-2.0.5/test/testshader.c
diff --git a/jni/SDL2-2.0.5/test/testshape.c b/love/src/jni/SDL2-2.0.5/test/testshape.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testshape.c
rename to love/src/jni/SDL2-2.0.5/test/testshape.c
diff --git a/jni/SDL2-2.0.5/test/testsprite2.c b/love/src/jni/SDL2-2.0.5/test/testsprite2.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testsprite2.c
rename to love/src/jni/SDL2-2.0.5/test/testsprite2.c
diff --git a/jni/SDL2-2.0.5/test/testspriteminimal.c b/love/src/jni/SDL2-2.0.5/test/testspriteminimal.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testspriteminimal.c
rename to love/src/jni/SDL2-2.0.5/test/testspriteminimal.c
diff --git a/jni/SDL2-2.0.5/test/teststreaming.c b/love/src/jni/SDL2-2.0.5/test/teststreaming.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/teststreaming.c
rename to love/src/jni/SDL2-2.0.5/test/teststreaming.c
diff --git a/jni/SDL2-2.0.5/test/testthread.c b/love/src/jni/SDL2-2.0.5/test/testthread.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testthread.c
rename to love/src/jni/SDL2-2.0.5/test/testthread.c
diff --git a/jni/SDL2-2.0.5/test/testtimer.c b/love/src/jni/SDL2-2.0.5/test/testtimer.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testtimer.c
rename to love/src/jni/SDL2-2.0.5/test/testtimer.c
diff --git a/jni/SDL2-2.0.5/test/testver.c b/love/src/jni/SDL2-2.0.5/test/testver.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testver.c
rename to love/src/jni/SDL2-2.0.5/test/testver.c
diff --git a/jni/SDL2-2.0.5/test/testviewport.c b/love/src/jni/SDL2-2.0.5/test/testviewport.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testviewport.c
rename to love/src/jni/SDL2-2.0.5/test/testviewport.c
diff --git a/jni/SDL2-2.0.5/test/testwm2.c b/love/src/jni/SDL2-2.0.5/test/testwm2.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/testwm2.c
rename to love/src/jni/SDL2-2.0.5/test/testwm2.c
diff --git a/jni/SDL2-2.0.5/test/torturethread.c b/love/src/jni/SDL2-2.0.5/test/torturethread.c
similarity index 100%
rename from jni/SDL2-2.0.5/test/torturethread.c
rename to love/src/jni/SDL2-2.0.5/test/torturethread.c
diff --git a/jni/SDL2-2.0.5/test/utf8.txt b/love/src/jni/SDL2-2.0.5/test/utf8.txt
similarity index 100%
rename from jni/SDL2-2.0.5/test/utf8.txt
rename to love/src/jni/SDL2-2.0.5/test/utf8.txt
diff --git a/jni/SDL2-2.0.5/visualtest/COPYING.txt b/love/src/jni/SDL2-2.0.5/visualtest/COPYING.txt
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/COPYING.txt
rename to love/src/jni/SDL2-2.0.5/visualtest/COPYING.txt
diff --git a/jni/SDL2-2.0.5/visualtest/Makefile.in b/love/src/jni/SDL2-2.0.5/visualtest/Makefile.in
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/Makefile.in
rename to love/src/jni/SDL2-2.0.5/visualtest/Makefile.in
diff --git a/jni/SDL2-2.0.5/visualtest/README.txt b/love/src/jni/SDL2-2.0.5/visualtest/README.txt
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/README.txt
rename to love/src/jni/SDL2-2.0.5/visualtest/README.txt
diff --git a/jni/SDL2-2.0.5/visualtest/acinclude.m4 b/love/src/jni/SDL2-2.0.5/visualtest/acinclude.m4
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/acinclude.m4
rename to love/src/jni/SDL2-2.0.5/visualtest/acinclude.m4
diff --git a/jni/SDL2-2.0.5/visualtest/autogen.sh b/love/src/jni/SDL2-2.0.5/visualtest/autogen.sh
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/autogen.sh
rename to love/src/jni/SDL2-2.0.5/visualtest/autogen.sh
diff --git a/jni/SDL2-2.0.5/visualtest/compile b/love/src/jni/SDL2-2.0.5/visualtest/compile
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/compile
rename to love/src/jni/SDL2-2.0.5/visualtest/compile
diff --git a/jni/SDL2-2.0.5/visualtest/config.h b/love/src/jni/SDL2-2.0.5/visualtest/config.h
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/config.h
rename to love/src/jni/SDL2-2.0.5/visualtest/config.h
diff --git a/jni/SDL2-2.0.5/visualtest/config.h.in b/love/src/jni/SDL2-2.0.5/visualtest/config.h.in
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/config.h.in
rename to love/src/jni/SDL2-2.0.5/visualtest/config.h.in
diff --git a/jni/SDL2-2.0.5/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.actions b/love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.actions
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.actions
rename to love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.actions
diff --git a/jni/SDL2-2.0.5/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.config b/love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.config
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.config
rename to love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.config
diff --git a/jni/SDL2-2.0.5/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.parameters b/love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.parameters
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.parameters
rename to love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.parameters
diff --git a/jni/SDL2-2.0.5/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.actions b/love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.actions
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.actions
rename to love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.actions
diff --git a/jni/SDL2-2.0.5/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.config b/love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.config
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.config
rename to love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.config
diff --git a/jni/SDL2-2.0.5/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.parameters b/love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.parameters
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.parameters
rename to love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.parameters
diff --git a/jni/SDL2-2.0.5/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.actions b/love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.actions
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.actions
rename to love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.actions
diff --git a/jni/SDL2-2.0.5/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.config b/love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.config
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.config
rename to love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.config
diff --git a/jni/SDL2-2.0.5/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.parameters b/love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.parameters
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.parameters
rename to love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.parameters
diff --git a/jni/SDL2-2.0.5/visualtest/configs/testsprite2_geometry/testsprite2_geometry.actions b/love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_geometry/testsprite2_geometry.actions
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configs/testsprite2_geometry/testsprite2_geometry.actions
rename to love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_geometry/testsprite2_geometry.actions
diff --git a/jni/SDL2-2.0.5/visualtest/configs/testsprite2_geometry/testsprite2_geometry.config b/love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_geometry/testsprite2_geometry.config
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configs/testsprite2_geometry/testsprite2_geometry.config
rename to love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_geometry/testsprite2_geometry.config
diff --git a/jni/SDL2-2.0.5/visualtest/configs/testsprite2_geometry/testsprite2_geometry.parameters b/love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_geometry/testsprite2_geometry.parameters
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configs/testsprite2_geometry/testsprite2_geometry.parameters
rename to love/src/jni/SDL2-2.0.5/visualtest/configs/testsprite2_geometry/testsprite2_geometry.parameters
diff --git a/jni/SDL2-2.0.5/visualtest/configure b/love/src/jni/SDL2-2.0.5/visualtest/configure
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configure
rename to love/src/jni/SDL2-2.0.5/visualtest/configure
diff --git a/jni/SDL2-2.0.5/visualtest/configure.in b/love/src/jni/SDL2-2.0.5/visualtest/configure.in
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/configure.in
rename to love/src/jni/SDL2-2.0.5/visualtest/configure.in
diff --git a/jni/SDL2-2.0.5/visualtest/depcomp b/love/src/jni/SDL2-2.0.5/visualtest/depcomp
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/depcomp
rename to love/src/jni/SDL2-2.0.5/visualtest/depcomp
diff --git a/jni/SDL2-2.0.5/visualtest/docs/Doxyfile b/love/src/jni/SDL2-2.0.5/visualtest/docs/Doxyfile
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/Doxyfile
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/Doxyfile
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__action__configparser_8h.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__action__configparser_8h.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__action__configparser_8h.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__action__configparser_8h.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__action__configparser_8h_source.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__action__configparser_8h_source.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__action__configparser_8h_source.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__action__configparser_8h_source.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__exhaustive__variator_8h.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__exhaustive__variator_8h.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__exhaustive__variator_8h.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__exhaustive__variator_8h.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__exhaustive__variator_8h_source.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__exhaustive__variator_8h_source.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__exhaustive__variator_8h_source.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__exhaustive__variator_8h_source.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__harness__argparser_8h.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__harness__argparser_8h.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__harness__argparser_8h.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__harness__argparser_8h.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__harness__argparser_8h_source.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__harness__argparser_8h_source.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__harness__argparser_8h_source.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__harness__argparser_8h_source.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__mischelper_8h_source.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__mischelper_8h_source.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__mischelper_8h_source.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__mischelper_8h_source.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__parsehelper_8h.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__parsehelper_8h.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__parsehelper_8h.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__parsehelper_8h.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__parsehelper_8h_source.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__parsehelper_8h_source.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__parsehelper_8h_source.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__parsehelper_8h_source.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__process_8h.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__process_8h.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__process_8h.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__process_8h.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__process_8h_source.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__process_8h_source.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__process_8h_source.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__process_8h_source.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__random__variator_8h.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__random__variator_8h.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__random__variator_8h.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__random__variator_8h.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__random__variator_8h_source.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__random__variator_8h_source.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__random__variator_8h_source.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__random__variator_8h_source.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__rwhelper_8h_source.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__rwhelper_8h_source.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__rwhelper_8h_source.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__rwhelper_8h_source.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__screenshot_8h.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__screenshot_8h.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__screenshot_8h.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__screenshot_8h.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__screenshot_8h_source.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__screenshot_8h_source.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__screenshot_8h_source.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__screenshot_8h_source.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__sut__configparser_8h.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__sut__configparser_8h.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__sut__configparser_8h.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__sut__configparser_8h.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__sut__configparser_8h_source.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__sut__configparser_8h_source.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__sut__configparser_8h_source.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__sut__configparser_8h_source.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variator__common_8h.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variator__common_8h.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variator__common_8h.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variator__common_8h.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variator__common_8h_source.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variator__common_8h_source.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variator__common_8h_source.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variator__common_8h_source.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variators_8h.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variators_8h.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variators_8h.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variators_8h.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variators_8h_source.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variators_8h_source.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variators_8h_source.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/_s_d_l__visualtest__variators_8h_source.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/action__configparser_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/action__configparser_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/action__configparser_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/action__configparser_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/annotated.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/annotated.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/annotated.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/annotated.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/bc_s.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/bc_s.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/bc_s.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/bc_s.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/bdwn.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/bdwn.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/bdwn.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/bdwn.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/classes.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/classes.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/classes.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/classes.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/closed.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/closed.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/closed.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/closed.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/config_8h_source.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/config_8h_source.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/config_8h_source.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/config_8h_source.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/dir_244674c763b96fdad0a6ffe8d0250e08.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_244674c763b96fdad0a6ffe8d0250e08.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/dir_244674c763b96fdad0a6ffe8d0250e08.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_244674c763b96fdad0a6ffe8d0250e08.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/dir_88e6415a3128b404f1102a130772bdb6.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_88e6415a3128b404f1102a130772bdb6.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/dir_88e6415a3128b404f1102a130772bdb6.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_88e6415a3128b404f1102a130772bdb6.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/dir_a18918b93668b435612395bbc2e8b82b.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_a18918b93668b435612395bbc2e8b82b.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/dir_a18918b93668b435612395bbc2e8b82b.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_a18918b93668b435612395bbc2e8b82b.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/dir_d44c64559bbebec7f509842c48db8b23.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_d44c64559bbebec7f509842c48db8b23.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/dir_d44c64559bbebec7f509842c48db8b23.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_d44c64559bbebec7f509842c48db8b23.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/dir_f584182df4c69fab0b14563b4d535158.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_f584182df4c69fab0b14563b4d535158.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/dir_f584182df4c69fab0b14563b4d535158.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_f584182df4c69fab0b14563b4d535158.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/dir_fe549de2418b81853b5f194edb4a7f34.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_fe549de2418b81853b5f194edb4a7f34.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/dir_fe549de2418b81853b5f194edb4a7f34.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/dir_fe549de2418b81853b5f194edb4a7f34.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/doxygen.css b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/doxygen.css
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/doxygen.css
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/doxygen.css
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/doxygen.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/doxygen.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/doxygen.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/doxygen.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/dynsections.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/dynsections.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/dynsections.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/dynsections.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/files.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/files.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/files.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/files.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2blank.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2blank.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2blank.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2blank.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2cl.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2cl.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2cl.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2cl.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2doc.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2doc.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2doc.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2doc.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2folderclosed.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2folderclosed.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2folderclosed.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2folderclosed.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2folderopen.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2folderopen.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2folderopen.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2folderopen.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2lastnode.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2lastnode.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2lastnode.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2lastnode.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2link.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2link.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2link.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2link.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2mlastnode.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2mlastnode.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2mlastnode.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2mlastnode.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2mnode.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2mnode.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2mnode.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2mnode.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2mo.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2mo.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2mo.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2mo.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2node.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2node.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2node.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2node.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2ns.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2ns.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2ns.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2ns.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2plastnode.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2plastnode.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2plastnode.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2plastnode.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2pnode.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2pnode.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2pnode.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2pnode.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2splitbar.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2splitbar.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2splitbar.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2splitbar.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/ftv2vertline.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2vertline.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/ftv2vertline.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/ftv2vertline.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/functions.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/functions.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/functions.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/functions.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/functions_vars.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/functions_vars.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/functions_vars.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/functions_vars.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/globals.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/globals.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/globals.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/globals.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/globals_defs.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/globals_defs.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/globals_defs.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/globals_defs.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/globals_enum.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/globals_enum.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/globals_enum.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/globals_enum.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/globals_eval.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/globals_eval.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/globals_eval.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/globals_eval.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/globals_func.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/globals_func.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/globals_func.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/globals_func.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/globals_type.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/globals_type.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/globals_type.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/globals_type.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/harness__argparser_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/harness__argparser_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/harness__argparser_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/harness__argparser_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/index.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/index.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/index.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/index.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/jquery.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/jquery.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/jquery.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/jquery.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/linux__process_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/linux__process_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/linux__process_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/linux__process_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/mischelper_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/mischelper_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/mischelper_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/mischelper_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/nav_f.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/nav_f.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/nav_f.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/nav_f.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/nav_g.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/nav_g.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/nav_g.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/nav_g.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/nav_h.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/nav_h.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/nav_h.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/nav_h.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/open.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/open.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/open.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/open.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/parsehelper_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/parsehelper_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/parsehelper_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/parsehelper_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/rwhelper_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/rwhelper_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/rwhelper_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/rwhelper_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/screenshot_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/screenshot_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/screenshot_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/screenshot_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_61.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_61.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_61.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_61.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_61.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_61.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_61.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_61.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_62.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_62.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_62.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_62.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_62.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_62.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_62.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_62.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_63.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_63.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_63.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_63.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_63.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_63.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_63.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_63.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_64.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_64.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_64.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_64.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_64.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_64.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_64.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_64.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_65.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_65.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_65.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_65.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_65.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_65.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_65.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_65.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_66.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_66.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_66.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_66.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_66.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_66.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_66.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_66.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_68.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_68.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_68.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_68.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_68.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_68.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_68.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_68.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_69.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_69.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_69.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_69.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_69.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_69.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_69.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_69.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6b.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6b.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_6b.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6b.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6b.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6b.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_6b.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6b.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_6c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6c.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6c.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_6c.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6c.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6d.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6d.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_6d.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6d.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6d.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6d.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_6d.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6d.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6e.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6e.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_6e.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6e.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6e.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6e.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_6e.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6e.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6f.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6f.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_6f.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6f.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6f.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6f.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_6f.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_6f.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_70.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_70.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_70.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_70.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_70.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_70.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_70.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_70.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_72.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_72.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_72.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_72.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_72.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_72.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_72.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_72.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_73.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_73.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_73.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_73.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_73.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_73.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_73.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_73.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_74.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_74.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_74.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_74.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_74.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_74.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_74.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_74.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_76.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_76.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_76.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_76.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_76.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_76.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_76.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_76.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_77.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_77.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_77.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_77.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/all_77.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_77.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/all_77.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/all_77.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/classes_73.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/classes_73.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/classes_73.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/classes_73.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/classes_73.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/classes_73.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/classes_73.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/classes_73.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/close.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/close.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/close.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/close.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_61.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_61.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/defines_61.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_61.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_61.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_61.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/defines_61.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_61.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_64.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_64.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/defines_64.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_64.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_64.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_64.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/defines_64.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_64.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6b.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6b.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6b.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6b.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6b.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6b.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6b.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6b.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6d.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6d.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6d.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6d.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6d.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6d.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6d.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_6d.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_73.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_73.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/defines_73.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_73.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_73.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_73.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/defines_73.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_73.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_74.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_74.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/defines_74.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_74.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_74.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_74.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/defines_74.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/defines_74.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/enums_73.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/enums_73.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/enums_73.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/enums_73.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/enums_73.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/enums_73.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/enums_73.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/enums_73.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/enumvalues_73.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/enumvalues_73.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/enumvalues_73.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/enumvalues_73.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/enumvalues_73.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/enumvalues_73.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/enumvalues_73.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/enumvalues_73.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_61.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_61.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_61.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_61.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_61.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_61.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_61.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_61.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_68.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_68.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_68.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_68.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_68.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_68.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_68.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_68.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_6c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_6c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_6c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_6c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_6c.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_6c.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_6c.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_6c.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_6d.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_6d.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_6d.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_6d.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_6d.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_6d.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_6d.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_6d.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_70.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_70.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_70.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_70.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_70.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_70.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_70.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_70.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_72.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_72.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_72.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_72.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_72.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_72.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_72.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_72.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_73.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_73.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_73.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_73.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_73.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_73.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_73.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_73.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_74.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_74.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_74.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_74.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_74.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_74.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_74.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_74.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_76.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_76.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_76.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_76.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_76.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_76.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_76.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_76.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_77.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_77.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_77.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_77.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/files_77.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_77.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/files_77.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/files_77.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/functions_6d.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/functions_6d.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/functions_6d.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/functions_6d.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/functions_6d.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/functions_6d.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/functions_6d.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/functions_6d.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/functions_73.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/functions_73.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/functions_73.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/functions_73.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/functions_73.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/functions_73.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/functions_73.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/functions_73.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/mag_sel.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/mag_sel.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/mag_sel.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/mag_sel.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/nomatches.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/nomatches.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/nomatches.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/nomatches.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/pages_76.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/pages_76.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/pages_76.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/pages_76.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/pages_76.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/pages_76.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/pages_76.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/pages_76.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/search.css b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/search.css
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/search.css
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/search.css
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/search.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/search.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/search.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/search.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/search_l.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/search_l.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/search_l.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/search_l.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/search_m.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/search_m.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/search_m.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/search_m.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/search_r.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/search_r.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/search_r.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/search_r.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/typedefs_73.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/typedefs_73.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/typedefs_73.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/typedefs_73.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/typedefs_73.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/typedefs_73.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/typedefs_73.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/typedefs_73.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_61.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_61.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_61.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_61.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_61.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_61.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_61.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_61.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_62.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_62.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_62.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_62.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_62.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_62.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_62.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_62.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_63.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_63.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_63.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_63.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_63.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_63.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_63.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_63.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_64.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_64.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_64.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_64.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_64.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_64.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_64.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_64.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_65.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_65.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_65.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_65.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_65.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_65.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_65.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_65.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_66.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_66.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_66.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_66.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_66.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_66.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_66.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_66.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_69.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_69.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_69.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_69.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_69.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_69.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_69.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_69.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6d.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6d.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6d.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6d.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6d.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6d.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6d.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6d.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6e.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6e.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6e.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6e.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6e.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6e.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6e.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6e.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6f.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6f.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6f.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6f.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6f.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6f.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6f.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_6f.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_70.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_70.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_70.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_70.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_70.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_70.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_70.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_70.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_72.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_72.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_72.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_72.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_72.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_72.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_72.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_72.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_73.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_73.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_73.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_73.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_73.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_73.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_73.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_73.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_74.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_74.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_74.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_74.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_74.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_74.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_74.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_74.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_76.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_76.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_76.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_76.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_76.js b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_76.js
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/search/variables_76.js
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/search/variables_76.js
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l___process_exit_status.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l___process_exit_status.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l___process_exit_status.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l___process_exit_status.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l___process_info.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l___process_info.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l___process_info.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l___process_info.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___action.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___action.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___action.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___action.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___action_node.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___action_node.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___action_node.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___action_node.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___action_queue.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___action_queue.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___action_queue.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___action_queue.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___exhaustive_variator.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___exhaustive_variator.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___exhaustive_variator.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___exhaustive_variator.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___harness_state.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___harness_state.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___harness_state.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___harness_state.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___r_w_helper_buffer.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___r_w_helper_buffer.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___r_w_helper_buffer.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___r_w_helper_buffer.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___random_variator.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___random_variator.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___random_variator.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___random_variator.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_config.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_config.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_config.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_config.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_int_range.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_int_range.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_int_range.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_int_range.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_option.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_option.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_option.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_option.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___variation.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___variation.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___variation.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___variation.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___variator.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___variator.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___variator.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/struct_s_d_l_visual_test___variator.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/sut__configparser_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/sut__configparser_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/sut__configparser_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/sut__configparser_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/sync_off.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/sync_off.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/sync_off.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/sync_off.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/sync_on.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/sync_on.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/sync_on.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/sync_on.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/tab_a.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/tab_a.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/tab_a.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/tab_a.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/tab_b.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/tab_b.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/tab_b.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/tab_b.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/tab_h.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/tab_h.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/tab_h.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/tab_h.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/tab_s.png b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/tab_s.png
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/tab_s.png
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/tab_s.png
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/tabs.css b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/tabs.css
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/tabs.css
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/tabs.css
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/testharness_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/testharness_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/testharness_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/testharness_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/union_s_d_l_visual_test___s_u_t_option_value.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/union_s_d_l_visual_test___s_u_t_option_value.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/union_s_d_l_visual_test___s_u_t_option_value.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/union_s_d_l_visual_test___s_u_t_option_value.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/variator__common_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/variator__common_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/variator__common_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/variator__common_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/variator__exhaustive_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/variator__exhaustive_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/variator__exhaustive_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/variator__exhaustive_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/variator__random_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/variator__random_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/variator__random_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/variator__random_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/variators_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/variators_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/variators_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/variators_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/windows__process_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/windows__process_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/windows__process_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/windows__process_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/html/windows__screenshot_8c.html b/love/src/jni/SDL2-2.0.5/visualtest/docs/html/windows__screenshot_8c.html
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/html/windows__screenshot_8c.html
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/html/windows__screenshot_8c.html
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__action__configparser_8h.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__action__configparser_8h.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__action__configparser_8h.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__action__configparser_8h.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__exhaustive__variator_8h.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__exhaustive__variator_8h.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__exhaustive__variator_8h.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__exhaustive__variator_8h.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__harness__argparser_8h.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__harness__argparser_8h.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__harness__argparser_8h.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__harness__argparser_8h.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__parsehelper_8h.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__parsehelper_8h.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__parsehelper_8h.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__parsehelper_8h.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__process_8h.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__process_8h.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__process_8h.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__process_8h.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__random__variator_8h.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__random__variator_8h.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__random__variator_8h.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__random__variator_8h.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__screenshot_8h.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__screenshot_8h.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__screenshot_8h.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__screenshot_8h.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__sut__configparser_8h.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__sut__configparser_8h.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__sut__configparser_8h.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__sut__configparser_8h.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__variator__common_8h.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__variator__common_8h.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__variator__common_8h.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__variator__common_8h.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__variators_8h.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__variators_8h.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__variators_8h.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/_s_d_l__visualtest__variators_8h.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/action__configparser_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/action__configparser_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/action__configparser_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/action__configparser_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/annotated.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/annotated.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/annotated.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/annotated.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/dir_244674c763b96fdad0a6ffe8d0250e08.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_244674c763b96fdad0a6ffe8d0250e08.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/dir_244674c763b96fdad0a6ffe8d0250e08.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_244674c763b96fdad0a6ffe8d0250e08.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/dir_68267d1309a1af8e8297ef4c3efbcdba.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_68267d1309a1af8e8297ef4c3efbcdba.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/dir_68267d1309a1af8e8297ef4c3efbcdba.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_68267d1309a1af8e8297ef4c3efbcdba.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/dir_88e6415a3128b404f1102a130772bdb6.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_88e6415a3128b404f1102a130772bdb6.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/dir_88e6415a3128b404f1102a130772bdb6.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_88e6415a3128b404f1102a130772bdb6.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/dir_a18918b93668b435612395bbc2e8b82b.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_a18918b93668b435612395bbc2e8b82b.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/dir_a18918b93668b435612395bbc2e8b82b.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_a18918b93668b435612395bbc2e8b82b.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/dir_d44c64559bbebec7f509842c48db8b23.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_d44c64559bbebec7f509842c48db8b23.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/dir_d44c64559bbebec7f509842c48db8b23.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_d44c64559bbebec7f509842c48db8b23.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/dir_f584182df4c69fab0b14563b4d535158.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_f584182df4c69fab0b14563b4d535158.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/dir_f584182df4c69fab0b14563b4d535158.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_f584182df4c69fab0b14563b4d535158.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/dir_fe549de2418b81853b5f194edb4a7f34.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_fe549de2418b81853b5f194edb4a7f34.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/dir_fe549de2418b81853b5f194edb4a7f34.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/dir_fe549de2418b81853b5f194edb4a7f34.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/doxygen.sty b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/doxygen.sty
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/doxygen.sty
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/doxygen.sty
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/files.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/files.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/files.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/files.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/harness__argparser_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/harness__argparser_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/harness__argparser_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/harness__argparser_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/index.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/index.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/index.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/index.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/linux__process_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/linux__process_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/linux__process_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/linux__process_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/make.bat b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/make.bat
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/make.bat
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/make.bat
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/mischelper_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/mischelper_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/mischelper_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/mischelper_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/parsehelper_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/parsehelper_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/parsehelper_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/parsehelper_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/refman.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/refman.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/refman.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/refman.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/rwhelper_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/rwhelper_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/rwhelper_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/rwhelper_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/screenshot_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/screenshot_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/screenshot_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/screenshot_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l___process_exit_status.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l___process_exit_status.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l___process_exit_status.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l___process_exit_status.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l___process_info.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l___process_info.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l___process_info.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l___process_info.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___action.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___action.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___action.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___action.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___action_node.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___action_node.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___action_node.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___action_node.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___action_queue.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___action_queue.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___action_queue.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___action_queue.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___exhaustive_variator.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___exhaustive_variator.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___exhaustive_variator.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___exhaustive_variator.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___harness_state.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___harness_state.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___harness_state.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___harness_state.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___r_w_helper_buffer.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___r_w_helper_buffer.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___r_w_helper_buffer.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___r_w_helper_buffer.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___random_variator.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___random_variator.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___random_variator.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___random_variator.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_config.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_config.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_config.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_config.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_int_range.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_int_range.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_int_range.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_int_range.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_option.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_option.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_option.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_option.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___variation.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___variation.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___variation.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___variation.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___variator.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___variator.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___variator.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/struct_s_d_l_visual_test___variator.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/sut__configparser_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/sut__configparser_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/sut__configparser_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/sut__configparser_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/testharness_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/testharness_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/testharness_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/testharness_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/union_s_d_l_visual_test___s_u_t_option_value.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/union_s_d_l_visual_test___s_u_t_option_value.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/union_s_d_l_visual_test___s_u_t_option_value.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/union_s_d_l_visual_test___s_u_t_option_value.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/variator__common_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/variator__common_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/variator__common_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/variator__common_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/variator__exhaustive_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/variator__exhaustive_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/variator__exhaustive_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/variator__exhaustive_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/variator__random_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/variator__random_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/variator__random_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/variator__random_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/variators_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/variators_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/variators_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/variators_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/windows__process_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/windows__process_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/windows__process_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/windows__process_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/docs/latex/windows__screenshot_8c.tex b/love/src/jni/SDL2-2.0.5/visualtest/docs/latex/windows__screenshot_8c.tex
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/docs/latex/windows__screenshot_8c.tex
rename to love/src/jni/SDL2-2.0.5/visualtest/docs/latex/windows__screenshot_8c.tex
diff --git a/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_action_configparser.h b/love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_action_configparser.h
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_action_configparser.h
rename to love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_action_configparser.h
diff --git a/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_exhaustive_variator.h b/love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_exhaustive_variator.h
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_exhaustive_variator.h
rename to love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_exhaustive_variator.h
diff --git a/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_harness_argparser.h b/love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_harness_argparser.h
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_harness_argparser.h
rename to love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_harness_argparser.h
diff --git a/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_mischelper.h b/love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_mischelper.h
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_mischelper.h
rename to love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_mischelper.h
diff --git a/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_parsehelper.h b/love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_parsehelper.h
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_parsehelper.h
rename to love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_parsehelper.h
diff --git a/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_process.h b/love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_process.h
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_process.h
rename to love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_process.h
diff --git a/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_random_variator.h b/love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_random_variator.h
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_random_variator.h
rename to love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_random_variator.h
diff --git a/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_rwhelper.h b/love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_rwhelper.h
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_rwhelper.h
rename to love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_rwhelper.h
diff --git a/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_screenshot.h b/love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_screenshot.h
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_screenshot.h
rename to love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_screenshot.h
diff --git a/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_sut_configparser.h b/love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_sut_configparser.h
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_sut_configparser.h
rename to love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_sut_configparser.h
diff --git a/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_variator_common.h b/love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_variator_common.h
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_variator_common.h
rename to love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_variator_common.h
diff --git a/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_variators.h b/love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_variators.h
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_variators.h
rename to love/src/jni/SDL2-2.0.5/visualtest/include/SDL_visualtest_variators.h
diff --git a/jni/SDL2-2.0.5/visualtest/install-sh b/love/src/jni/SDL2-2.0.5/visualtest/install-sh
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/install-sh
rename to love/src/jni/SDL2-2.0.5/visualtest/install-sh
diff --git a/jni/SDL2-2.0.5/visualtest/launch_harness.cmd b/love/src/jni/SDL2-2.0.5/visualtest/launch_harness.cmd
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/launch_harness.cmd
rename to love/src/jni/SDL2-2.0.5/visualtest/launch_harness.cmd
diff --git a/jni/SDL2-2.0.5/visualtest/launch_harness.sh b/love/src/jni/SDL2-2.0.5/visualtest/launch_harness.sh
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/launch_harness.sh
rename to love/src/jni/SDL2-2.0.5/visualtest/launch_harness.sh
diff --git a/jni/SDL2-2.0.5/visualtest/missing b/love/src/jni/SDL2-2.0.5/visualtest/missing
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/missing
rename to love/src/jni/SDL2-2.0.5/visualtest/missing
diff --git a/jni/SDL2-2.0.5/visualtest/src/action_configparser.c b/love/src/jni/SDL2-2.0.5/visualtest/src/action_configparser.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/action_configparser.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/action_configparser.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/harness_argparser.c b/love/src/jni/SDL2-2.0.5/visualtest/src/harness_argparser.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/harness_argparser.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/harness_argparser.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/linux/linux_process.c b/love/src/jni/SDL2-2.0.5/visualtest/src/linux/linux_process.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/linux/linux_process.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/linux/linux_process.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/mischelper.c b/love/src/jni/SDL2-2.0.5/visualtest/src/mischelper.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/mischelper.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/mischelper.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/parsehelper.c b/love/src/jni/SDL2-2.0.5/visualtest/src/parsehelper.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/parsehelper.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/parsehelper.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/rwhelper.c b/love/src/jni/SDL2-2.0.5/visualtest/src/rwhelper.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/rwhelper.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/rwhelper.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/screenshot.c b/love/src/jni/SDL2-2.0.5/visualtest/src/screenshot.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/screenshot.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/screenshot.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/sut_configparser.c b/love/src/jni/SDL2-2.0.5/visualtest/src/sut_configparser.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/sut_configparser.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/sut_configparser.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/testharness.c b/love/src/jni/SDL2-2.0.5/visualtest/src/testharness.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/testharness.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/testharness.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/variator_common.c b/love/src/jni/SDL2-2.0.5/visualtest/src/variator_common.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/variator_common.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/variator_common.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/variator_exhaustive.c b/love/src/jni/SDL2-2.0.5/visualtest/src/variator_exhaustive.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/variator_exhaustive.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/variator_exhaustive.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/variator_random.c b/love/src/jni/SDL2-2.0.5/visualtest/src/variator_random.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/variator_random.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/variator_random.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/variators.c b/love/src/jni/SDL2-2.0.5/visualtest/src/variators.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/variators.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/variators.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/windows/windows_process.c b/love/src/jni/SDL2-2.0.5/visualtest/src/windows/windows_process.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/windows/windows_process.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/windows/windows_process.c
diff --git a/jni/SDL2-2.0.5/visualtest/src/windows/windows_screenshot.c b/love/src/jni/SDL2-2.0.5/visualtest/src/windows/windows_screenshot.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/src/windows/windows_screenshot.c
rename to love/src/jni/SDL2-2.0.5/visualtest/src/windows/windows_screenshot.c
diff --git a/jni/SDL2-2.0.5/visualtest/stamp-h1 b/love/src/jni/SDL2-2.0.5/visualtest/stamp-h1
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/stamp-h1
rename to love/src/jni/SDL2-2.0.5/visualtest/stamp-h1
diff --git a/jni/SDL2-2.0.5/visualtest/testsprite2_sample.actions b/love/src/jni/SDL2-2.0.5/visualtest/testsprite2_sample.actions
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/testsprite2_sample.actions
rename to love/src/jni/SDL2-2.0.5/visualtest/testsprite2_sample.actions
diff --git a/jni/SDL2-2.0.5/visualtest/testsprite2_sample.config b/love/src/jni/SDL2-2.0.5/visualtest/testsprite2_sample.config
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/testsprite2_sample.config
rename to love/src/jni/SDL2-2.0.5/visualtest/testsprite2_sample.config
diff --git a/jni/SDL2-2.0.5/visualtest/testsprite2_sample.parameters b/love/src/jni/SDL2-2.0.5/visualtest/testsprite2_sample.parameters
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/testsprite2_sample.parameters
rename to love/src/jni/SDL2-2.0.5/visualtest/testsprite2_sample.parameters
diff --git a/jni/SDL2-2.0.5/visualtest/unittest/testquit.actions b/love/src/jni/SDL2-2.0.5/visualtest/unittest/testquit.actions
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/unittest/testquit.actions
rename to love/src/jni/SDL2-2.0.5/visualtest/unittest/testquit.actions
diff --git a/jni/SDL2-2.0.5/visualtest/unittest/testquit.c b/love/src/jni/SDL2-2.0.5/visualtest/unittest/testquit.c
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/unittest/testquit.c
rename to love/src/jni/SDL2-2.0.5/visualtest/unittest/testquit.c
diff --git a/jni/SDL2-2.0.5/visualtest/unittest/testquit.config b/love/src/jni/SDL2-2.0.5/visualtest/unittest/testquit.config
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/unittest/testquit.config
rename to love/src/jni/SDL2-2.0.5/visualtest/unittest/testquit.config
diff --git a/jni/SDL2-2.0.5/visualtest/unittest/testquit.parameters b/love/src/jni/SDL2-2.0.5/visualtest/unittest/testquit.parameters
similarity index 100%
rename from jni/SDL2-2.0.5/visualtest/unittest/testquit.parameters
rename to love/src/jni/SDL2-2.0.5/visualtest/unittest/testquit.parameters
diff --git a/jni/freetype2-android/.gitignore b/love/src/jni/freetype2-android/.gitignore
similarity index 100%
rename from jni/freetype2-android/.gitignore
rename to love/src/jni/freetype2-android/.gitignore
diff --git a/jni/freetype2-android/Android.mk b/love/src/jni/freetype2-android/Android.mk
similarity index 100%
rename from jni/freetype2-android/Android.mk
rename to love/src/jni/freetype2-android/Android.mk
diff --git a/jni/freetype2-android/Android/jni/Android.mk b/love/src/jni/freetype2-android/Android/jni/Android.mk
similarity index 100%
rename from jni/freetype2-android/Android/jni/Android.mk
rename to love/src/jni/freetype2-android/Android/jni/Android.mk
diff --git a/jni/freetype2-android/Android/jni/Application.mk b/love/src/jni/freetype2-android/Android/jni/Application.mk
similarity index 100%
rename from jni/freetype2-android/Android/jni/Application.mk
rename to love/src/jni/freetype2-android/Android/jni/Application.mk
diff --git a/jni/freetype2-android/Android/jni/module.mk b/love/src/jni/freetype2-android/Android/jni/module.mk
similarity index 100%
rename from jni/freetype2-android/Android/jni/module.mk
rename to love/src/jni/freetype2-android/Android/jni/module.mk
diff --git a/jni/freetype2-android/FTL.txt b/love/src/jni/freetype2-android/FTL.txt
similarity index 100%
rename from jni/freetype2-android/FTL.txt
rename to love/src/jni/freetype2-android/FTL.txt
diff --git a/jni/freetype2-android/README.md b/love/src/jni/freetype2-android/README.md
similarity index 100%
rename from jni/freetype2-android/README.md
rename to love/src/jni/freetype2-android/README.md
diff --git a/jni/freetype2-android/include/freetype/config/ftconfig.h b/love/src/jni/freetype2-android/include/freetype/config/ftconfig.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/config/ftconfig.h
rename to love/src/jni/freetype2-android/include/freetype/config/ftconfig.h
diff --git a/jni/freetype2-android/include/freetype/config/ftheader.h b/love/src/jni/freetype2-android/include/freetype/config/ftheader.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/config/ftheader.h
rename to love/src/jni/freetype2-android/include/freetype/config/ftheader.h
diff --git a/jni/freetype2-android/include/freetype/config/ftmodule.h b/love/src/jni/freetype2-android/include/freetype/config/ftmodule.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/config/ftmodule.h
rename to love/src/jni/freetype2-android/include/freetype/config/ftmodule.h
diff --git a/jni/freetype2-android/include/freetype/config/ftoption.h b/love/src/jni/freetype2-android/include/freetype/config/ftoption.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/config/ftoption.h
rename to love/src/jni/freetype2-android/include/freetype/config/ftoption.h
diff --git a/jni/freetype2-android/include/freetype/config/ftstdlib.h b/love/src/jni/freetype2-android/include/freetype/config/ftstdlib.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/config/ftstdlib.h
rename to love/src/jni/freetype2-android/include/freetype/config/ftstdlib.h
diff --git a/jni/freetype2-android/include/freetype/freetype.h b/love/src/jni/freetype2-android/include/freetype/freetype.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/freetype.h
rename to love/src/jni/freetype2-android/include/freetype/freetype.h
diff --git a/jni/freetype2-android/include/freetype/ftadvanc.h b/love/src/jni/freetype2-android/include/freetype/ftadvanc.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftadvanc.h
rename to love/src/jni/freetype2-android/include/freetype/ftadvanc.h
diff --git a/jni/freetype2-android/include/freetype/ftbbox.h b/love/src/jni/freetype2-android/include/freetype/ftbbox.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftbbox.h
rename to love/src/jni/freetype2-android/include/freetype/ftbbox.h
diff --git a/jni/freetype2-android/include/freetype/ftbdf.h b/love/src/jni/freetype2-android/include/freetype/ftbdf.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftbdf.h
rename to love/src/jni/freetype2-android/include/freetype/ftbdf.h
diff --git a/jni/freetype2-android/include/freetype/ftbitmap.h b/love/src/jni/freetype2-android/include/freetype/ftbitmap.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftbitmap.h
rename to love/src/jni/freetype2-android/include/freetype/ftbitmap.h
diff --git a/jni/freetype2-android/include/freetype/ftcache.h b/love/src/jni/freetype2-android/include/freetype/ftcache.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftcache.h
rename to love/src/jni/freetype2-android/include/freetype/ftcache.h
diff --git a/jni/freetype2-android/include/freetype/ftchapters.h b/love/src/jni/freetype2-android/include/freetype/ftchapters.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftchapters.h
rename to love/src/jni/freetype2-android/include/freetype/ftchapters.h
diff --git a/jni/freetype2-android/include/freetype/ftcid.h b/love/src/jni/freetype2-android/include/freetype/ftcid.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftcid.h
rename to love/src/jni/freetype2-android/include/freetype/ftcid.h
diff --git a/jni/freetype2-android/include/freetype/fterrdef.h b/love/src/jni/freetype2-android/include/freetype/fterrdef.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/fterrdef.h
rename to love/src/jni/freetype2-android/include/freetype/fterrdef.h
diff --git a/jni/freetype2-android/include/freetype/fterrors.h b/love/src/jni/freetype2-android/include/freetype/fterrors.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/fterrors.h
rename to love/src/jni/freetype2-android/include/freetype/fterrors.h
diff --git a/jni/freetype2-android/include/freetype/ftgasp.h b/love/src/jni/freetype2-android/include/freetype/ftgasp.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftgasp.h
rename to love/src/jni/freetype2-android/include/freetype/ftgasp.h
diff --git a/jni/freetype2-android/include/freetype/ftglyph.h b/love/src/jni/freetype2-android/include/freetype/ftglyph.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftglyph.h
rename to love/src/jni/freetype2-android/include/freetype/ftglyph.h
diff --git a/jni/freetype2-android/include/freetype/ftgxval.h b/love/src/jni/freetype2-android/include/freetype/ftgxval.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftgxval.h
rename to love/src/jni/freetype2-android/include/freetype/ftgxval.h
diff --git a/jni/freetype2-android/include/freetype/ftgzip.h b/love/src/jni/freetype2-android/include/freetype/ftgzip.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftgzip.h
rename to love/src/jni/freetype2-android/include/freetype/ftgzip.h
diff --git a/jni/freetype2-android/include/freetype/ftimage.h b/love/src/jni/freetype2-android/include/freetype/ftimage.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftimage.h
rename to love/src/jni/freetype2-android/include/freetype/ftimage.h
diff --git a/jni/freetype2-android/include/freetype/ftincrem.h b/love/src/jni/freetype2-android/include/freetype/ftincrem.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftincrem.h
rename to love/src/jni/freetype2-android/include/freetype/ftincrem.h
diff --git a/jni/freetype2-android/include/freetype/ftlcdfil.h b/love/src/jni/freetype2-android/include/freetype/ftlcdfil.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftlcdfil.h
rename to love/src/jni/freetype2-android/include/freetype/ftlcdfil.h
diff --git a/jni/freetype2-android/include/freetype/ftlist.h b/love/src/jni/freetype2-android/include/freetype/ftlist.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftlist.h
rename to love/src/jni/freetype2-android/include/freetype/ftlist.h
diff --git a/jni/freetype2-android/include/freetype/ftlzw.h b/love/src/jni/freetype2-android/include/freetype/ftlzw.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftlzw.h
rename to love/src/jni/freetype2-android/include/freetype/ftlzw.h
diff --git a/jni/freetype2-android/include/freetype/ftmac.h b/love/src/jni/freetype2-android/include/freetype/ftmac.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftmac.h
rename to love/src/jni/freetype2-android/include/freetype/ftmac.h
diff --git a/jni/freetype2-android/include/freetype/ftmm.h b/love/src/jni/freetype2-android/include/freetype/ftmm.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftmm.h
rename to love/src/jni/freetype2-android/include/freetype/ftmm.h
diff --git a/jni/freetype2-android/include/freetype/ftmodapi.h b/love/src/jni/freetype2-android/include/freetype/ftmodapi.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftmodapi.h
rename to love/src/jni/freetype2-android/include/freetype/ftmodapi.h
diff --git a/jni/freetype2-android/include/freetype/ftmoderr.h b/love/src/jni/freetype2-android/include/freetype/ftmoderr.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftmoderr.h
rename to love/src/jni/freetype2-android/include/freetype/ftmoderr.h
diff --git a/jni/freetype2-android/include/freetype/ftotval.h b/love/src/jni/freetype2-android/include/freetype/ftotval.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftotval.h
rename to love/src/jni/freetype2-android/include/freetype/ftotval.h
diff --git a/jni/freetype2-android/include/freetype/ftoutln.h b/love/src/jni/freetype2-android/include/freetype/ftoutln.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftoutln.h
rename to love/src/jni/freetype2-android/include/freetype/ftoutln.h
diff --git a/jni/freetype2-android/include/freetype/ftpfr.h b/love/src/jni/freetype2-android/include/freetype/ftpfr.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftpfr.h
rename to love/src/jni/freetype2-android/include/freetype/ftpfr.h
diff --git a/jni/freetype2-android/include/freetype/ftrender.h b/love/src/jni/freetype2-android/include/freetype/ftrender.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftrender.h
rename to love/src/jni/freetype2-android/include/freetype/ftrender.h
diff --git a/jni/freetype2-android/include/freetype/ftsizes.h b/love/src/jni/freetype2-android/include/freetype/ftsizes.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftsizes.h
rename to love/src/jni/freetype2-android/include/freetype/ftsizes.h
diff --git a/jni/freetype2-android/include/freetype/ftsnames.h b/love/src/jni/freetype2-android/include/freetype/ftsnames.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftsnames.h
rename to love/src/jni/freetype2-android/include/freetype/ftsnames.h
diff --git a/jni/freetype2-android/include/freetype/ftstroke.h b/love/src/jni/freetype2-android/include/freetype/ftstroke.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftstroke.h
rename to love/src/jni/freetype2-android/include/freetype/ftstroke.h
diff --git a/jni/freetype2-android/include/freetype/ftsynth.h b/love/src/jni/freetype2-android/include/freetype/ftsynth.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftsynth.h
rename to love/src/jni/freetype2-android/include/freetype/ftsynth.h
diff --git a/jni/freetype2-android/include/freetype/ftsystem.h b/love/src/jni/freetype2-android/include/freetype/ftsystem.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftsystem.h
rename to love/src/jni/freetype2-android/include/freetype/ftsystem.h
diff --git a/jni/freetype2-android/include/freetype/fttrigon.h b/love/src/jni/freetype2-android/include/freetype/fttrigon.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/fttrigon.h
rename to love/src/jni/freetype2-android/include/freetype/fttrigon.h
diff --git a/jni/freetype2-android/include/freetype/fttypes.h b/love/src/jni/freetype2-android/include/freetype/fttypes.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/fttypes.h
rename to love/src/jni/freetype2-android/include/freetype/fttypes.h
diff --git a/jni/freetype2-android/include/freetype/ftwinfnt.h b/love/src/jni/freetype2-android/include/freetype/ftwinfnt.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftwinfnt.h
rename to love/src/jni/freetype2-android/include/freetype/ftwinfnt.h
diff --git a/jni/freetype2-android/include/freetype/ftxf86.h b/love/src/jni/freetype2-android/include/freetype/ftxf86.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ftxf86.h
rename to love/src/jni/freetype2-android/include/freetype/ftxf86.h
diff --git a/jni/freetype2-android/include/freetype/internal/autohint.h b/love/src/jni/freetype2-android/include/freetype/internal/autohint.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/autohint.h
rename to love/src/jni/freetype2-android/include/freetype/internal/autohint.h
diff --git a/jni/freetype2-android/include/freetype/internal/ftcalc.h b/love/src/jni/freetype2-android/include/freetype/internal/ftcalc.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/ftcalc.h
rename to love/src/jni/freetype2-android/include/freetype/internal/ftcalc.h
diff --git a/jni/freetype2-android/include/freetype/internal/ftdebug.h b/love/src/jni/freetype2-android/include/freetype/internal/ftdebug.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/ftdebug.h
rename to love/src/jni/freetype2-android/include/freetype/internal/ftdebug.h
diff --git a/jni/freetype2-android/include/freetype/internal/ftdriver.h b/love/src/jni/freetype2-android/include/freetype/internal/ftdriver.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/ftdriver.h
rename to love/src/jni/freetype2-android/include/freetype/internal/ftdriver.h
diff --git a/jni/freetype2-android/include/freetype/internal/ftgloadr.h b/love/src/jni/freetype2-android/include/freetype/internal/ftgloadr.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/ftgloadr.h
rename to love/src/jni/freetype2-android/include/freetype/internal/ftgloadr.h
diff --git a/jni/freetype2-android/include/freetype/internal/ftmemory.h b/love/src/jni/freetype2-android/include/freetype/internal/ftmemory.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/ftmemory.h
rename to love/src/jni/freetype2-android/include/freetype/internal/ftmemory.h
diff --git a/jni/freetype2-android/include/freetype/internal/ftobjs.h b/love/src/jni/freetype2-android/include/freetype/internal/ftobjs.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/ftobjs.h
rename to love/src/jni/freetype2-android/include/freetype/internal/ftobjs.h
diff --git a/jni/freetype2-android/include/freetype/internal/ftpic.h b/love/src/jni/freetype2-android/include/freetype/internal/ftpic.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/ftpic.h
rename to love/src/jni/freetype2-android/include/freetype/internal/ftpic.h
diff --git a/jni/freetype2-android/include/freetype/internal/ftrfork.h b/love/src/jni/freetype2-android/include/freetype/internal/ftrfork.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/ftrfork.h
rename to love/src/jni/freetype2-android/include/freetype/internal/ftrfork.h
diff --git a/jni/freetype2-android/include/freetype/internal/ftserv.h b/love/src/jni/freetype2-android/include/freetype/internal/ftserv.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/ftserv.h
rename to love/src/jni/freetype2-android/include/freetype/internal/ftserv.h
diff --git a/jni/freetype2-android/include/freetype/internal/ftstream.h b/love/src/jni/freetype2-android/include/freetype/internal/ftstream.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/ftstream.h
rename to love/src/jni/freetype2-android/include/freetype/internal/ftstream.h
diff --git a/jni/freetype2-android/include/freetype/internal/fttrace.h b/love/src/jni/freetype2-android/include/freetype/internal/fttrace.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/fttrace.h
rename to love/src/jni/freetype2-android/include/freetype/internal/fttrace.h
diff --git a/jni/freetype2-android/include/freetype/internal/ftvalid.h b/love/src/jni/freetype2-android/include/freetype/internal/ftvalid.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/ftvalid.h
rename to love/src/jni/freetype2-android/include/freetype/internal/ftvalid.h
diff --git a/jni/freetype2-android/include/freetype/internal/internal.h b/love/src/jni/freetype2-android/include/freetype/internal/internal.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/internal.h
rename to love/src/jni/freetype2-android/include/freetype/internal/internal.h
diff --git a/jni/freetype2-android/include/freetype/internal/pcftypes.h b/love/src/jni/freetype2-android/include/freetype/internal/pcftypes.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/pcftypes.h
rename to love/src/jni/freetype2-android/include/freetype/internal/pcftypes.h
diff --git a/jni/freetype2-android/include/freetype/internal/psaux.h b/love/src/jni/freetype2-android/include/freetype/internal/psaux.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/psaux.h
rename to love/src/jni/freetype2-android/include/freetype/internal/psaux.h
diff --git a/jni/freetype2-android/include/freetype/internal/pshints.h b/love/src/jni/freetype2-android/include/freetype/internal/pshints.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/pshints.h
rename to love/src/jni/freetype2-android/include/freetype/internal/pshints.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svbdf.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svbdf.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svbdf.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svbdf.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svcid.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svcid.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svcid.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svcid.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svgldict.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svgldict.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svgldict.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svgldict.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svgxval.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svgxval.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svgxval.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svgxval.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svkern.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svkern.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svkern.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svkern.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svmm.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svmm.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svmm.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svmm.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svotval.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svotval.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svotval.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svotval.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svpfr.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svpfr.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svpfr.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svpfr.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svpostnm.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svpostnm.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svpostnm.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svpostnm.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svpscmap.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svpscmap.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svpscmap.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svpscmap.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svpsinfo.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svpsinfo.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svpsinfo.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svpsinfo.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svsfnt.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svsfnt.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svsfnt.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svsfnt.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svttcmap.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svttcmap.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svttcmap.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svttcmap.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svtteng.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svtteng.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svtteng.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svtteng.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svttglyf.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svttglyf.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svttglyf.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svttglyf.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svwinfnt.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svwinfnt.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svwinfnt.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svwinfnt.h
diff --git a/jni/freetype2-android/include/freetype/internal/services/svxf86nm.h b/love/src/jni/freetype2-android/include/freetype/internal/services/svxf86nm.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/services/svxf86nm.h
rename to love/src/jni/freetype2-android/include/freetype/internal/services/svxf86nm.h
diff --git a/jni/freetype2-android/include/freetype/internal/sfnt.h b/love/src/jni/freetype2-android/include/freetype/internal/sfnt.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/sfnt.h
rename to love/src/jni/freetype2-android/include/freetype/internal/sfnt.h
diff --git a/jni/freetype2-android/include/freetype/internal/t1types.h b/love/src/jni/freetype2-android/include/freetype/internal/t1types.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/t1types.h
rename to love/src/jni/freetype2-android/include/freetype/internal/t1types.h
diff --git a/jni/freetype2-android/include/freetype/internal/tttypes.h b/love/src/jni/freetype2-android/include/freetype/internal/tttypes.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/internal/tttypes.h
rename to love/src/jni/freetype2-android/include/freetype/internal/tttypes.h
diff --git a/jni/freetype2-android/include/freetype/t1tables.h b/love/src/jni/freetype2-android/include/freetype/t1tables.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/t1tables.h
rename to love/src/jni/freetype2-android/include/freetype/t1tables.h
diff --git a/jni/freetype2-android/include/freetype/ttnameid.h b/love/src/jni/freetype2-android/include/freetype/ttnameid.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ttnameid.h
rename to love/src/jni/freetype2-android/include/freetype/ttnameid.h
diff --git a/jni/freetype2-android/include/freetype/tttables.h b/love/src/jni/freetype2-android/include/freetype/tttables.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/tttables.h
rename to love/src/jni/freetype2-android/include/freetype/tttables.h
diff --git a/jni/freetype2-android/include/freetype/tttags.h b/love/src/jni/freetype2-android/include/freetype/tttags.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/tttags.h
rename to love/src/jni/freetype2-android/include/freetype/tttags.h
diff --git a/jni/freetype2-android/include/freetype/ttunpat.h b/love/src/jni/freetype2-android/include/freetype/ttunpat.h
similarity index 100%
rename from jni/freetype2-android/include/freetype/ttunpat.h
rename to love/src/jni/freetype2-android/include/freetype/ttunpat.h
diff --git a/jni/freetype2-android/include/ft2build.h b/love/src/jni/freetype2-android/include/ft2build.h
similarity index 100%
rename from jni/freetype2-android/include/ft2build.h
rename to love/src/jni/freetype2-android/include/ft2build.h
diff --git a/jni/freetype2-android/src/autofit/Jamfile b/love/src/jni/freetype2-android/src/autofit/Jamfile
similarity index 100%
rename from jni/freetype2-android/src/autofit/Jamfile
rename to love/src/jni/freetype2-android/src/autofit/Jamfile
diff --git a/jni/freetype2-android/src/autofit/afangles.c b/love/src/jni/freetype2-android/src/autofit/afangles.c
similarity index 100%
rename from jni/freetype2-android/src/autofit/afangles.c
rename to love/src/jni/freetype2-android/src/autofit/afangles.c
diff --git a/jni/freetype2-android/src/autofit/afangles.h b/love/src/jni/freetype2-android/src/autofit/afangles.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/afangles.h
rename to love/src/jni/freetype2-android/src/autofit/afangles.h
diff --git a/jni/freetype2-android/src/autofit/afcjk.c b/love/src/jni/freetype2-android/src/autofit/afcjk.c
similarity index 100%
rename from jni/freetype2-android/src/autofit/afcjk.c
rename to love/src/jni/freetype2-android/src/autofit/afcjk.c
diff --git a/jni/freetype2-android/src/autofit/afcjk.h b/love/src/jni/freetype2-android/src/autofit/afcjk.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/afcjk.h
rename to love/src/jni/freetype2-android/src/autofit/afcjk.h
diff --git a/jni/freetype2-android/src/autofit/afdummy.c b/love/src/jni/freetype2-android/src/autofit/afdummy.c
similarity index 100%
rename from jni/freetype2-android/src/autofit/afdummy.c
rename to love/src/jni/freetype2-android/src/autofit/afdummy.c
diff --git a/jni/freetype2-android/src/autofit/afdummy.h b/love/src/jni/freetype2-android/src/autofit/afdummy.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/afdummy.h
rename to love/src/jni/freetype2-android/src/autofit/afdummy.h
diff --git a/jni/freetype2-android/src/autofit/aferrors.h b/love/src/jni/freetype2-android/src/autofit/aferrors.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/aferrors.h
rename to love/src/jni/freetype2-android/src/autofit/aferrors.h
diff --git a/jni/freetype2-android/src/autofit/afglobal.c b/love/src/jni/freetype2-android/src/autofit/afglobal.c
similarity index 100%
rename from jni/freetype2-android/src/autofit/afglobal.c
rename to love/src/jni/freetype2-android/src/autofit/afglobal.c
diff --git a/jni/freetype2-android/src/autofit/afglobal.h b/love/src/jni/freetype2-android/src/autofit/afglobal.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/afglobal.h
rename to love/src/jni/freetype2-android/src/autofit/afglobal.h
diff --git a/jni/freetype2-android/src/autofit/afhints.c b/love/src/jni/freetype2-android/src/autofit/afhints.c
similarity index 100%
rename from jni/freetype2-android/src/autofit/afhints.c
rename to love/src/jni/freetype2-android/src/autofit/afhints.c
diff --git a/jni/freetype2-android/src/autofit/afhints.h b/love/src/jni/freetype2-android/src/autofit/afhints.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/afhints.h
rename to love/src/jni/freetype2-android/src/autofit/afhints.h
diff --git a/jni/freetype2-android/src/autofit/afindic.c b/love/src/jni/freetype2-android/src/autofit/afindic.c
similarity index 100%
rename from jni/freetype2-android/src/autofit/afindic.c
rename to love/src/jni/freetype2-android/src/autofit/afindic.c
diff --git a/jni/freetype2-android/src/autofit/afindic.h b/love/src/jni/freetype2-android/src/autofit/afindic.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/afindic.h
rename to love/src/jni/freetype2-android/src/autofit/afindic.h
diff --git a/jni/freetype2-android/src/autofit/aflatin.c b/love/src/jni/freetype2-android/src/autofit/aflatin.c
similarity index 100%
rename from jni/freetype2-android/src/autofit/aflatin.c
rename to love/src/jni/freetype2-android/src/autofit/aflatin.c
diff --git a/jni/freetype2-android/src/autofit/aflatin.h b/love/src/jni/freetype2-android/src/autofit/aflatin.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/aflatin.h
rename to love/src/jni/freetype2-android/src/autofit/aflatin.h
diff --git a/jni/freetype2-android/src/autofit/aflatin2.c b/love/src/jni/freetype2-android/src/autofit/aflatin2.c
similarity index 100%
rename from jni/freetype2-android/src/autofit/aflatin2.c
rename to love/src/jni/freetype2-android/src/autofit/aflatin2.c
diff --git a/jni/freetype2-android/src/autofit/aflatin2.h b/love/src/jni/freetype2-android/src/autofit/aflatin2.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/aflatin2.h
rename to love/src/jni/freetype2-android/src/autofit/aflatin2.h
diff --git a/jni/freetype2-android/src/autofit/afloader.c b/love/src/jni/freetype2-android/src/autofit/afloader.c
similarity index 100%
rename from jni/freetype2-android/src/autofit/afloader.c
rename to love/src/jni/freetype2-android/src/autofit/afloader.c
diff --git a/jni/freetype2-android/src/autofit/afloader.h b/love/src/jni/freetype2-android/src/autofit/afloader.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/afloader.h
rename to love/src/jni/freetype2-android/src/autofit/afloader.h
diff --git a/jni/freetype2-android/src/autofit/afmodule.c b/love/src/jni/freetype2-android/src/autofit/afmodule.c
similarity index 100%
rename from jni/freetype2-android/src/autofit/afmodule.c
rename to love/src/jni/freetype2-android/src/autofit/afmodule.c
diff --git a/jni/freetype2-android/src/autofit/afmodule.h b/love/src/jni/freetype2-android/src/autofit/afmodule.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/afmodule.h
rename to love/src/jni/freetype2-android/src/autofit/afmodule.h
diff --git a/jni/freetype2-android/src/autofit/afpic.c b/love/src/jni/freetype2-android/src/autofit/afpic.c
similarity index 100%
rename from jni/freetype2-android/src/autofit/afpic.c
rename to love/src/jni/freetype2-android/src/autofit/afpic.c
diff --git a/jni/freetype2-android/src/autofit/afpic.h b/love/src/jni/freetype2-android/src/autofit/afpic.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/afpic.h
rename to love/src/jni/freetype2-android/src/autofit/afpic.h
diff --git a/jni/freetype2-android/src/autofit/aftypes.h b/love/src/jni/freetype2-android/src/autofit/aftypes.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/aftypes.h
rename to love/src/jni/freetype2-android/src/autofit/aftypes.h
diff --git a/jni/freetype2-android/src/autofit/afwarp.c b/love/src/jni/freetype2-android/src/autofit/afwarp.c
similarity index 100%
rename from jni/freetype2-android/src/autofit/afwarp.c
rename to love/src/jni/freetype2-android/src/autofit/afwarp.c
diff --git a/jni/freetype2-android/src/autofit/afwarp.h b/love/src/jni/freetype2-android/src/autofit/afwarp.h
similarity index 100%
rename from jni/freetype2-android/src/autofit/afwarp.h
rename to love/src/jni/freetype2-android/src/autofit/afwarp.h
diff --git a/jni/freetype2-android/src/autofit/autofit.c b/love/src/jni/freetype2-android/src/autofit/autofit.c
similarity index 100%
rename from jni/freetype2-android/src/autofit/autofit.c
rename to love/src/jni/freetype2-android/src/autofit/autofit.c
diff --git a/jni/freetype2-android/src/autofit/module.mk b/love/src/jni/freetype2-android/src/autofit/module.mk
similarity index 100%
rename from jni/freetype2-android/src/autofit/module.mk
rename to love/src/jni/freetype2-android/src/autofit/module.mk
diff --git a/jni/freetype2-android/src/autofit/rules.mk b/love/src/jni/freetype2-android/src/autofit/rules.mk
similarity index 100%
rename from jni/freetype2-android/src/autofit/rules.mk
rename to love/src/jni/freetype2-android/src/autofit/rules.mk
diff --git a/jni/freetype2-android/src/base/basepic.c b/love/src/jni/freetype2-android/src/base/basepic.c
similarity index 100%
rename from jni/freetype2-android/src/base/basepic.c
rename to love/src/jni/freetype2-android/src/base/basepic.c
diff --git a/jni/freetype2-android/src/base/basepic.h b/love/src/jni/freetype2-android/src/base/basepic.h
similarity index 100%
rename from jni/freetype2-android/src/base/basepic.h
rename to love/src/jni/freetype2-android/src/base/basepic.h
diff --git a/jni/freetype2-android/src/base/ftadvanc.c b/love/src/jni/freetype2-android/src/base/ftadvanc.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftadvanc.c
rename to love/src/jni/freetype2-android/src/base/ftadvanc.c
diff --git a/jni/freetype2-android/src/base/ftapi.c b/love/src/jni/freetype2-android/src/base/ftapi.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftapi.c
rename to love/src/jni/freetype2-android/src/base/ftapi.c
diff --git a/jni/freetype2-android/src/base/ftbase.c b/love/src/jni/freetype2-android/src/base/ftbase.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftbase.c
rename to love/src/jni/freetype2-android/src/base/ftbase.c
diff --git a/jni/freetype2-android/src/base/ftbase.h b/love/src/jni/freetype2-android/src/base/ftbase.h
similarity index 100%
rename from jni/freetype2-android/src/base/ftbase.h
rename to love/src/jni/freetype2-android/src/base/ftbase.h
diff --git a/jni/freetype2-android/src/base/ftbbox.c b/love/src/jni/freetype2-android/src/base/ftbbox.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftbbox.c
rename to love/src/jni/freetype2-android/src/base/ftbbox.c
diff --git a/jni/freetype2-android/src/base/ftbitmap.c b/love/src/jni/freetype2-android/src/base/ftbitmap.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftbitmap.c
rename to love/src/jni/freetype2-android/src/base/ftbitmap.c
diff --git a/jni/freetype2-android/src/base/ftcalc.c b/love/src/jni/freetype2-android/src/base/ftcalc.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftcalc.c
rename to love/src/jni/freetype2-android/src/base/ftcalc.c
diff --git a/jni/freetype2-android/src/base/ftdbgmem.c b/love/src/jni/freetype2-android/src/base/ftdbgmem.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftdbgmem.c
rename to love/src/jni/freetype2-android/src/base/ftdbgmem.c
diff --git a/jni/freetype2-android/src/base/ftdebug.c b/love/src/jni/freetype2-android/src/base/ftdebug.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftdebug.c
rename to love/src/jni/freetype2-android/src/base/ftdebug.c
diff --git a/jni/freetype2-android/src/base/ftgloadr.c b/love/src/jni/freetype2-android/src/base/ftgloadr.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftgloadr.c
rename to love/src/jni/freetype2-android/src/base/ftgloadr.c
diff --git a/jni/freetype2-android/src/base/ftglyph.c b/love/src/jni/freetype2-android/src/base/ftglyph.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftglyph.c
rename to love/src/jni/freetype2-android/src/base/ftglyph.c
diff --git a/jni/freetype2-android/src/base/ftinit.c b/love/src/jni/freetype2-android/src/base/ftinit.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftinit.c
rename to love/src/jni/freetype2-android/src/base/ftinit.c
diff --git a/jni/freetype2-android/src/base/ftobjs.c b/love/src/jni/freetype2-android/src/base/ftobjs.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftobjs.c
rename to love/src/jni/freetype2-android/src/base/ftobjs.c
diff --git a/jni/freetype2-android/src/base/ftoutln.c b/love/src/jni/freetype2-android/src/base/ftoutln.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftoutln.c
rename to love/src/jni/freetype2-android/src/base/ftoutln.c
diff --git a/jni/freetype2-android/src/base/ftpic.c b/love/src/jni/freetype2-android/src/base/ftpic.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftpic.c
rename to love/src/jni/freetype2-android/src/base/ftpic.c
diff --git a/jni/freetype2-android/src/base/ftrfork.c b/love/src/jni/freetype2-android/src/base/ftrfork.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftrfork.c
rename to love/src/jni/freetype2-android/src/base/ftrfork.c
diff --git a/jni/freetype2-android/src/base/ftsnames.c b/love/src/jni/freetype2-android/src/base/ftsnames.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftsnames.c
rename to love/src/jni/freetype2-android/src/base/ftsnames.c
diff --git a/jni/freetype2-android/src/base/ftstream.c b/love/src/jni/freetype2-android/src/base/ftstream.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftstream.c
rename to love/src/jni/freetype2-android/src/base/ftstream.c
diff --git a/jni/freetype2-android/src/base/ftstroke.c b/love/src/jni/freetype2-android/src/base/ftstroke.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftstroke.c
rename to love/src/jni/freetype2-android/src/base/ftstroke.c
diff --git a/jni/freetype2-android/src/base/ftsynth.c b/love/src/jni/freetype2-android/src/base/ftsynth.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftsynth.c
rename to love/src/jni/freetype2-android/src/base/ftsynth.c
diff --git a/jni/freetype2-android/src/base/ftsystem.c b/love/src/jni/freetype2-android/src/base/ftsystem.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftsystem.c
rename to love/src/jni/freetype2-android/src/base/ftsystem.c
diff --git a/jni/freetype2-android/src/base/fttrigon.c b/love/src/jni/freetype2-android/src/base/fttrigon.c
similarity index 100%
rename from jni/freetype2-android/src/base/fttrigon.c
rename to love/src/jni/freetype2-android/src/base/fttrigon.c
diff --git a/jni/freetype2-android/src/base/ftutil.c b/love/src/jni/freetype2-android/src/base/ftutil.c
similarity index 100%
rename from jni/freetype2-android/src/base/ftutil.c
rename to love/src/jni/freetype2-android/src/base/ftutil.c
diff --git a/jni/freetype2-android/src/cff/Jamfile b/love/src/jni/freetype2-android/src/cff/Jamfile
similarity index 100%
rename from jni/freetype2-android/src/cff/Jamfile
rename to love/src/jni/freetype2-android/src/cff/Jamfile
diff --git a/jni/freetype2-android/src/cff/cff.c b/love/src/jni/freetype2-android/src/cff/cff.c
similarity index 100%
rename from jni/freetype2-android/src/cff/cff.c
rename to love/src/jni/freetype2-android/src/cff/cff.c
diff --git a/jni/freetype2-android/src/cff/cffcmap.c b/love/src/jni/freetype2-android/src/cff/cffcmap.c
similarity index 100%
rename from jni/freetype2-android/src/cff/cffcmap.c
rename to love/src/jni/freetype2-android/src/cff/cffcmap.c
diff --git a/jni/freetype2-android/src/cff/cffcmap.h b/love/src/jni/freetype2-android/src/cff/cffcmap.h
similarity index 100%
rename from jni/freetype2-android/src/cff/cffcmap.h
rename to love/src/jni/freetype2-android/src/cff/cffcmap.h
diff --git a/jni/freetype2-android/src/cff/cffdrivr.c b/love/src/jni/freetype2-android/src/cff/cffdrivr.c
similarity index 100%
rename from jni/freetype2-android/src/cff/cffdrivr.c
rename to love/src/jni/freetype2-android/src/cff/cffdrivr.c
diff --git a/jni/freetype2-android/src/cff/cffdrivr.h b/love/src/jni/freetype2-android/src/cff/cffdrivr.h
similarity index 100%
rename from jni/freetype2-android/src/cff/cffdrivr.h
rename to love/src/jni/freetype2-android/src/cff/cffdrivr.h
diff --git a/jni/freetype2-android/src/cff/cfferrs.h b/love/src/jni/freetype2-android/src/cff/cfferrs.h
similarity index 100%
rename from jni/freetype2-android/src/cff/cfferrs.h
rename to love/src/jni/freetype2-android/src/cff/cfferrs.h
diff --git a/jni/freetype2-android/src/cff/cffgload.c b/love/src/jni/freetype2-android/src/cff/cffgload.c
similarity index 100%
rename from jni/freetype2-android/src/cff/cffgload.c
rename to love/src/jni/freetype2-android/src/cff/cffgload.c
diff --git a/jni/freetype2-android/src/cff/cffgload.h b/love/src/jni/freetype2-android/src/cff/cffgload.h
similarity index 100%
rename from jni/freetype2-android/src/cff/cffgload.h
rename to love/src/jni/freetype2-android/src/cff/cffgload.h
diff --git a/jni/freetype2-android/src/cff/cffload.c b/love/src/jni/freetype2-android/src/cff/cffload.c
similarity index 100%
rename from jni/freetype2-android/src/cff/cffload.c
rename to love/src/jni/freetype2-android/src/cff/cffload.c
diff --git a/jni/freetype2-android/src/cff/cffload.h b/love/src/jni/freetype2-android/src/cff/cffload.h
similarity index 100%
rename from jni/freetype2-android/src/cff/cffload.h
rename to love/src/jni/freetype2-android/src/cff/cffload.h
diff --git a/jni/freetype2-android/src/cff/cffobjs.c b/love/src/jni/freetype2-android/src/cff/cffobjs.c
similarity index 100%
rename from jni/freetype2-android/src/cff/cffobjs.c
rename to love/src/jni/freetype2-android/src/cff/cffobjs.c
diff --git a/jni/freetype2-android/src/cff/cffobjs.h b/love/src/jni/freetype2-android/src/cff/cffobjs.h
similarity index 100%
rename from jni/freetype2-android/src/cff/cffobjs.h
rename to love/src/jni/freetype2-android/src/cff/cffobjs.h
diff --git a/jni/freetype2-android/src/cff/cffparse.c b/love/src/jni/freetype2-android/src/cff/cffparse.c
similarity index 100%
rename from jni/freetype2-android/src/cff/cffparse.c
rename to love/src/jni/freetype2-android/src/cff/cffparse.c
diff --git a/jni/freetype2-android/src/cff/cffparse.h b/love/src/jni/freetype2-android/src/cff/cffparse.h
similarity index 100%
rename from jni/freetype2-android/src/cff/cffparse.h
rename to love/src/jni/freetype2-android/src/cff/cffparse.h
diff --git a/jni/freetype2-android/src/cff/cffpic.c b/love/src/jni/freetype2-android/src/cff/cffpic.c
similarity index 100%
rename from jni/freetype2-android/src/cff/cffpic.c
rename to love/src/jni/freetype2-android/src/cff/cffpic.c
diff --git a/jni/freetype2-android/src/cff/cffpic.h b/love/src/jni/freetype2-android/src/cff/cffpic.h
similarity index 100%
rename from jni/freetype2-android/src/cff/cffpic.h
rename to love/src/jni/freetype2-android/src/cff/cffpic.h
diff --git a/jni/freetype2-android/src/cff/cfftoken.h b/love/src/jni/freetype2-android/src/cff/cfftoken.h
similarity index 100%
rename from jni/freetype2-android/src/cff/cfftoken.h
rename to love/src/jni/freetype2-android/src/cff/cfftoken.h
diff --git a/jni/freetype2-android/src/cff/cfftypes.h b/love/src/jni/freetype2-android/src/cff/cfftypes.h
similarity index 100%
rename from jni/freetype2-android/src/cff/cfftypes.h
rename to love/src/jni/freetype2-android/src/cff/cfftypes.h
diff --git a/jni/freetype2-android/src/cff/module.mk b/love/src/jni/freetype2-android/src/cff/module.mk
similarity index 100%
rename from jni/freetype2-android/src/cff/module.mk
rename to love/src/jni/freetype2-android/src/cff/module.mk
diff --git a/jni/freetype2-android/src/cff/rules.mk b/love/src/jni/freetype2-android/src/cff/rules.mk
similarity index 100%
rename from jni/freetype2-android/src/cff/rules.mk
rename to love/src/jni/freetype2-android/src/cff/rules.mk
diff --git a/jni/freetype2-android/src/pshinter/Jamfile b/love/src/jni/freetype2-android/src/pshinter/Jamfile
similarity index 100%
rename from jni/freetype2-android/src/pshinter/Jamfile
rename to love/src/jni/freetype2-android/src/pshinter/Jamfile
diff --git a/jni/freetype2-android/src/pshinter/module.mk b/love/src/jni/freetype2-android/src/pshinter/module.mk
similarity index 100%
rename from jni/freetype2-android/src/pshinter/module.mk
rename to love/src/jni/freetype2-android/src/pshinter/module.mk
diff --git a/jni/freetype2-android/src/pshinter/pshalgo.c b/love/src/jni/freetype2-android/src/pshinter/pshalgo.c
similarity index 100%
rename from jni/freetype2-android/src/pshinter/pshalgo.c
rename to love/src/jni/freetype2-android/src/pshinter/pshalgo.c
diff --git a/jni/freetype2-android/src/pshinter/pshalgo.h b/love/src/jni/freetype2-android/src/pshinter/pshalgo.h
similarity index 100%
rename from jni/freetype2-android/src/pshinter/pshalgo.h
rename to love/src/jni/freetype2-android/src/pshinter/pshalgo.h
diff --git a/jni/freetype2-android/src/pshinter/pshglob.c b/love/src/jni/freetype2-android/src/pshinter/pshglob.c
similarity index 100%
rename from jni/freetype2-android/src/pshinter/pshglob.c
rename to love/src/jni/freetype2-android/src/pshinter/pshglob.c
diff --git a/jni/freetype2-android/src/pshinter/pshglob.h b/love/src/jni/freetype2-android/src/pshinter/pshglob.h
similarity index 100%
rename from jni/freetype2-android/src/pshinter/pshglob.h
rename to love/src/jni/freetype2-android/src/pshinter/pshglob.h
diff --git a/jni/freetype2-android/src/pshinter/pshinter.c b/love/src/jni/freetype2-android/src/pshinter/pshinter.c
similarity index 100%
rename from jni/freetype2-android/src/pshinter/pshinter.c
rename to love/src/jni/freetype2-android/src/pshinter/pshinter.c
diff --git a/jni/freetype2-android/src/pshinter/pshmod.c b/love/src/jni/freetype2-android/src/pshinter/pshmod.c
similarity index 100%
rename from jni/freetype2-android/src/pshinter/pshmod.c
rename to love/src/jni/freetype2-android/src/pshinter/pshmod.c
diff --git a/jni/freetype2-android/src/pshinter/pshmod.h b/love/src/jni/freetype2-android/src/pshinter/pshmod.h
similarity index 100%
rename from jni/freetype2-android/src/pshinter/pshmod.h
rename to love/src/jni/freetype2-android/src/pshinter/pshmod.h
diff --git a/jni/freetype2-android/src/pshinter/pshnterr.h b/love/src/jni/freetype2-android/src/pshinter/pshnterr.h
similarity index 100%
rename from jni/freetype2-android/src/pshinter/pshnterr.h
rename to love/src/jni/freetype2-android/src/pshinter/pshnterr.h
diff --git a/jni/freetype2-android/src/pshinter/pshpic.c b/love/src/jni/freetype2-android/src/pshinter/pshpic.c
similarity index 100%
rename from jni/freetype2-android/src/pshinter/pshpic.c
rename to love/src/jni/freetype2-android/src/pshinter/pshpic.c
diff --git a/jni/freetype2-android/src/pshinter/pshpic.h b/love/src/jni/freetype2-android/src/pshinter/pshpic.h
similarity index 100%
rename from jni/freetype2-android/src/pshinter/pshpic.h
rename to love/src/jni/freetype2-android/src/pshinter/pshpic.h
diff --git a/jni/freetype2-android/src/pshinter/pshrec.c b/love/src/jni/freetype2-android/src/pshinter/pshrec.c
similarity index 100%
rename from jni/freetype2-android/src/pshinter/pshrec.c
rename to love/src/jni/freetype2-android/src/pshinter/pshrec.c
diff --git a/jni/freetype2-android/src/pshinter/pshrec.h b/love/src/jni/freetype2-android/src/pshinter/pshrec.h
similarity index 100%
rename from jni/freetype2-android/src/pshinter/pshrec.h
rename to love/src/jni/freetype2-android/src/pshinter/pshrec.h
diff --git a/jni/freetype2-android/src/pshinter/rules.mk b/love/src/jni/freetype2-android/src/pshinter/rules.mk
similarity index 100%
rename from jni/freetype2-android/src/pshinter/rules.mk
rename to love/src/jni/freetype2-android/src/pshinter/rules.mk
diff --git a/jni/freetype2-android/src/psnames/Jamfile b/love/src/jni/freetype2-android/src/psnames/Jamfile
similarity index 100%
rename from jni/freetype2-android/src/psnames/Jamfile
rename to love/src/jni/freetype2-android/src/psnames/Jamfile
diff --git a/jni/freetype2-android/src/psnames/module.mk b/love/src/jni/freetype2-android/src/psnames/module.mk
similarity index 100%
rename from jni/freetype2-android/src/psnames/module.mk
rename to love/src/jni/freetype2-android/src/psnames/module.mk
diff --git a/jni/freetype2-android/src/psnames/psmodule.c b/love/src/jni/freetype2-android/src/psnames/psmodule.c
similarity index 100%
rename from jni/freetype2-android/src/psnames/psmodule.c
rename to love/src/jni/freetype2-android/src/psnames/psmodule.c
diff --git a/jni/freetype2-android/src/psnames/psmodule.h b/love/src/jni/freetype2-android/src/psnames/psmodule.h
similarity index 100%
rename from jni/freetype2-android/src/psnames/psmodule.h
rename to love/src/jni/freetype2-android/src/psnames/psmodule.h
diff --git a/jni/freetype2-android/src/psnames/psnamerr.h b/love/src/jni/freetype2-android/src/psnames/psnamerr.h
similarity index 100%
rename from jni/freetype2-android/src/psnames/psnamerr.h
rename to love/src/jni/freetype2-android/src/psnames/psnamerr.h
diff --git a/jni/freetype2-android/src/psnames/psnames.c b/love/src/jni/freetype2-android/src/psnames/psnames.c
similarity index 100%
rename from jni/freetype2-android/src/psnames/psnames.c
rename to love/src/jni/freetype2-android/src/psnames/psnames.c
diff --git a/jni/freetype2-android/src/psnames/pspic.c b/love/src/jni/freetype2-android/src/psnames/pspic.c
similarity index 100%
rename from jni/freetype2-android/src/psnames/pspic.c
rename to love/src/jni/freetype2-android/src/psnames/pspic.c
diff --git a/jni/freetype2-android/src/psnames/pspic.h b/love/src/jni/freetype2-android/src/psnames/pspic.h
similarity index 100%
rename from jni/freetype2-android/src/psnames/pspic.h
rename to love/src/jni/freetype2-android/src/psnames/pspic.h
diff --git a/jni/freetype2-android/src/psnames/pstables.h b/love/src/jni/freetype2-android/src/psnames/pstables.h
similarity index 100%
rename from jni/freetype2-android/src/psnames/pstables.h
rename to love/src/jni/freetype2-android/src/psnames/pstables.h
diff --git a/jni/freetype2-android/src/psnames/rules.mk b/love/src/jni/freetype2-android/src/psnames/rules.mk
similarity index 100%
rename from jni/freetype2-android/src/psnames/rules.mk
rename to love/src/jni/freetype2-android/src/psnames/rules.mk
diff --git a/jni/freetype2-android/src/raster/Jamfile b/love/src/jni/freetype2-android/src/raster/Jamfile
similarity index 100%
rename from jni/freetype2-android/src/raster/Jamfile
rename to love/src/jni/freetype2-android/src/raster/Jamfile
diff --git a/jni/freetype2-android/src/raster/ftmisc.h b/love/src/jni/freetype2-android/src/raster/ftmisc.h
similarity index 100%
rename from jni/freetype2-android/src/raster/ftmisc.h
rename to love/src/jni/freetype2-android/src/raster/ftmisc.h
diff --git a/jni/freetype2-android/src/raster/ftraster.c b/love/src/jni/freetype2-android/src/raster/ftraster.c
similarity index 100%
rename from jni/freetype2-android/src/raster/ftraster.c
rename to love/src/jni/freetype2-android/src/raster/ftraster.c
diff --git a/jni/freetype2-android/src/raster/ftraster.h b/love/src/jni/freetype2-android/src/raster/ftraster.h
similarity index 100%
rename from jni/freetype2-android/src/raster/ftraster.h
rename to love/src/jni/freetype2-android/src/raster/ftraster.h
diff --git a/jni/freetype2-android/src/raster/ftrend1.c b/love/src/jni/freetype2-android/src/raster/ftrend1.c
similarity index 100%
rename from jni/freetype2-android/src/raster/ftrend1.c
rename to love/src/jni/freetype2-android/src/raster/ftrend1.c
diff --git a/jni/freetype2-android/src/raster/ftrend1.h b/love/src/jni/freetype2-android/src/raster/ftrend1.h
similarity index 100%
rename from jni/freetype2-android/src/raster/ftrend1.h
rename to love/src/jni/freetype2-android/src/raster/ftrend1.h
diff --git a/jni/freetype2-android/src/raster/module.mk b/love/src/jni/freetype2-android/src/raster/module.mk
similarity index 100%
rename from jni/freetype2-android/src/raster/module.mk
rename to love/src/jni/freetype2-android/src/raster/module.mk
diff --git a/jni/freetype2-android/src/raster/raster.c b/love/src/jni/freetype2-android/src/raster/raster.c
similarity index 100%
rename from jni/freetype2-android/src/raster/raster.c
rename to love/src/jni/freetype2-android/src/raster/raster.c
diff --git a/jni/freetype2-android/src/raster/rasterrs.h b/love/src/jni/freetype2-android/src/raster/rasterrs.h
similarity index 100%
rename from jni/freetype2-android/src/raster/rasterrs.h
rename to love/src/jni/freetype2-android/src/raster/rasterrs.h
diff --git a/jni/freetype2-android/src/raster/rastpic.c b/love/src/jni/freetype2-android/src/raster/rastpic.c
similarity index 100%
rename from jni/freetype2-android/src/raster/rastpic.c
rename to love/src/jni/freetype2-android/src/raster/rastpic.c
diff --git a/jni/freetype2-android/src/raster/rastpic.h b/love/src/jni/freetype2-android/src/raster/rastpic.h
similarity index 100%
rename from jni/freetype2-android/src/raster/rastpic.h
rename to love/src/jni/freetype2-android/src/raster/rastpic.h
diff --git a/jni/freetype2-android/src/raster/rules.mk b/love/src/jni/freetype2-android/src/raster/rules.mk
similarity index 100%
rename from jni/freetype2-android/src/raster/rules.mk
rename to love/src/jni/freetype2-android/src/raster/rules.mk
diff --git a/jni/freetype2-android/src/sfnt/Jamfile b/love/src/jni/freetype2-android/src/sfnt/Jamfile
similarity index 100%
rename from jni/freetype2-android/src/sfnt/Jamfile
rename to love/src/jni/freetype2-android/src/sfnt/Jamfile
diff --git a/jni/freetype2-android/src/sfnt/module.mk b/love/src/jni/freetype2-android/src/sfnt/module.mk
similarity index 100%
rename from jni/freetype2-android/src/sfnt/module.mk
rename to love/src/jni/freetype2-android/src/sfnt/module.mk
diff --git a/jni/freetype2-android/src/sfnt/rules.mk b/love/src/jni/freetype2-android/src/sfnt/rules.mk
similarity index 100%
rename from jni/freetype2-android/src/sfnt/rules.mk
rename to love/src/jni/freetype2-android/src/sfnt/rules.mk
diff --git a/jni/freetype2-android/src/sfnt/sfdriver.c b/love/src/jni/freetype2-android/src/sfnt/sfdriver.c
similarity index 100%
rename from jni/freetype2-android/src/sfnt/sfdriver.c
rename to love/src/jni/freetype2-android/src/sfnt/sfdriver.c
diff --git a/jni/freetype2-android/src/sfnt/sfdriver.h b/love/src/jni/freetype2-android/src/sfnt/sfdriver.h
similarity index 100%
rename from jni/freetype2-android/src/sfnt/sfdriver.h
rename to love/src/jni/freetype2-android/src/sfnt/sfdriver.h
diff --git a/jni/freetype2-android/src/sfnt/sferrors.h b/love/src/jni/freetype2-android/src/sfnt/sferrors.h
similarity index 100%
rename from jni/freetype2-android/src/sfnt/sferrors.h
rename to love/src/jni/freetype2-android/src/sfnt/sferrors.h
diff --git a/jni/freetype2-android/src/sfnt/sfnt.c b/love/src/jni/freetype2-android/src/sfnt/sfnt.c
similarity index 100%
rename from jni/freetype2-android/src/sfnt/sfnt.c
rename to love/src/jni/freetype2-android/src/sfnt/sfnt.c
diff --git a/jni/freetype2-android/src/sfnt/sfntpic.c b/love/src/jni/freetype2-android/src/sfnt/sfntpic.c
similarity index 100%
rename from jni/freetype2-android/src/sfnt/sfntpic.c
rename to love/src/jni/freetype2-android/src/sfnt/sfntpic.c
diff --git a/jni/freetype2-android/src/sfnt/sfntpic.h b/love/src/jni/freetype2-android/src/sfnt/sfntpic.h
similarity index 100%
rename from jni/freetype2-android/src/sfnt/sfntpic.h
rename to love/src/jni/freetype2-android/src/sfnt/sfntpic.h
diff --git a/jni/freetype2-android/src/sfnt/sfobjs.c b/love/src/jni/freetype2-android/src/sfnt/sfobjs.c
similarity index 100%
rename from jni/freetype2-android/src/sfnt/sfobjs.c
rename to love/src/jni/freetype2-android/src/sfnt/sfobjs.c
diff --git a/jni/freetype2-android/src/sfnt/sfobjs.h b/love/src/jni/freetype2-android/src/sfnt/sfobjs.h
similarity index 100%
rename from jni/freetype2-android/src/sfnt/sfobjs.h
rename to love/src/jni/freetype2-android/src/sfnt/sfobjs.h
diff --git a/jni/freetype2-android/src/sfnt/ttbdf.c b/love/src/jni/freetype2-android/src/sfnt/ttbdf.c
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttbdf.c
rename to love/src/jni/freetype2-android/src/sfnt/ttbdf.c
diff --git a/jni/freetype2-android/src/sfnt/ttbdf.h b/love/src/jni/freetype2-android/src/sfnt/ttbdf.h
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttbdf.h
rename to love/src/jni/freetype2-android/src/sfnt/ttbdf.h
diff --git a/jni/freetype2-android/src/sfnt/ttcmap.c b/love/src/jni/freetype2-android/src/sfnt/ttcmap.c
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttcmap.c
rename to love/src/jni/freetype2-android/src/sfnt/ttcmap.c
diff --git a/jni/freetype2-android/src/sfnt/ttcmap.h b/love/src/jni/freetype2-android/src/sfnt/ttcmap.h
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttcmap.h
rename to love/src/jni/freetype2-android/src/sfnt/ttcmap.h
diff --git a/jni/freetype2-android/src/sfnt/ttcmapc.h b/love/src/jni/freetype2-android/src/sfnt/ttcmapc.h
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttcmapc.h
rename to love/src/jni/freetype2-android/src/sfnt/ttcmapc.h
diff --git a/jni/freetype2-android/src/sfnt/ttkern.c b/love/src/jni/freetype2-android/src/sfnt/ttkern.c
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttkern.c
rename to love/src/jni/freetype2-android/src/sfnt/ttkern.c
diff --git a/jni/freetype2-android/src/sfnt/ttkern.h b/love/src/jni/freetype2-android/src/sfnt/ttkern.h
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttkern.h
rename to love/src/jni/freetype2-android/src/sfnt/ttkern.h
diff --git a/jni/freetype2-android/src/sfnt/ttload.c b/love/src/jni/freetype2-android/src/sfnt/ttload.c
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttload.c
rename to love/src/jni/freetype2-android/src/sfnt/ttload.c
diff --git a/jni/freetype2-android/src/sfnt/ttload.h b/love/src/jni/freetype2-android/src/sfnt/ttload.h
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttload.h
rename to love/src/jni/freetype2-android/src/sfnt/ttload.h
diff --git a/jni/freetype2-android/src/sfnt/ttmtx.c b/love/src/jni/freetype2-android/src/sfnt/ttmtx.c
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttmtx.c
rename to love/src/jni/freetype2-android/src/sfnt/ttmtx.c
diff --git a/jni/freetype2-android/src/sfnt/ttmtx.h b/love/src/jni/freetype2-android/src/sfnt/ttmtx.h
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttmtx.h
rename to love/src/jni/freetype2-android/src/sfnt/ttmtx.h
diff --git a/jni/freetype2-android/src/sfnt/ttpost.c b/love/src/jni/freetype2-android/src/sfnt/ttpost.c
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttpost.c
rename to love/src/jni/freetype2-android/src/sfnt/ttpost.c
diff --git a/jni/freetype2-android/src/sfnt/ttpost.h b/love/src/jni/freetype2-android/src/sfnt/ttpost.h
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttpost.h
rename to love/src/jni/freetype2-android/src/sfnt/ttpost.h
diff --git a/jni/freetype2-android/src/sfnt/ttsbit.c b/love/src/jni/freetype2-android/src/sfnt/ttsbit.c
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttsbit.c
rename to love/src/jni/freetype2-android/src/sfnt/ttsbit.c
diff --git a/jni/freetype2-android/src/sfnt/ttsbit.h b/love/src/jni/freetype2-android/src/sfnt/ttsbit.h
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttsbit.h
rename to love/src/jni/freetype2-android/src/sfnt/ttsbit.h
diff --git a/jni/freetype2-android/src/sfnt/ttsbit0.c b/love/src/jni/freetype2-android/src/sfnt/ttsbit0.c
similarity index 100%
rename from jni/freetype2-android/src/sfnt/ttsbit0.c
rename to love/src/jni/freetype2-android/src/sfnt/ttsbit0.c
diff --git a/jni/freetype2-android/src/smooth/Jamfile b/love/src/jni/freetype2-android/src/smooth/Jamfile
similarity index 100%
rename from jni/freetype2-android/src/smooth/Jamfile
rename to love/src/jni/freetype2-android/src/smooth/Jamfile
diff --git a/jni/freetype2-android/src/smooth/ftgrays.c b/love/src/jni/freetype2-android/src/smooth/ftgrays.c
similarity index 100%
rename from jni/freetype2-android/src/smooth/ftgrays.c
rename to love/src/jni/freetype2-android/src/smooth/ftgrays.c
diff --git a/jni/freetype2-android/src/smooth/ftgrays.h b/love/src/jni/freetype2-android/src/smooth/ftgrays.h
similarity index 100%
rename from jni/freetype2-android/src/smooth/ftgrays.h
rename to love/src/jni/freetype2-android/src/smooth/ftgrays.h
diff --git a/jni/freetype2-android/src/smooth/ftsmerrs.h b/love/src/jni/freetype2-android/src/smooth/ftsmerrs.h
similarity index 100%
rename from jni/freetype2-android/src/smooth/ftsmerrs.h
rename to love/src/jni/freetype2-android/src/smooth/ftsmerrs.h
diff --git a/jni/freetype2-android/src/smooth/ftsmooth.c b/love/src/jni/freetype2-android/src/smooth/ftsmooth.c
similarity index 100%
rename from jni/freetype2-android/src/smooth/ftsmooth.c
rename to love/src/jni/freetype2-android/src/smooth/ftsmooth.c
diff --git a/jni/freetype2-android/src/smooth/ftsmooth.h b/love/src/jni/freetype2-android/src/smooth/ftsmooth.h
similarity index 100%
rename from jni/freetype2-android/src/smooth/ftsmooth.h
rename to love/src/jni/freetype2-android/src/smooth/ftsmooth.h
diff --git a/jni/freetype2-android/src/smooth/ftspic.c b/love/src/jni/freetype2-android/src/smooth/ftspic.c
similarity index 100%
rename from jni/freetype2-android/src/smooth/ftspic.c
rename to love/src/jni/freetype2-android/src/smooth/ftspic.c
diff --git a/jni/freetype2-android/src/smooth/ftspic.h b/love/src/jni/freetype2-android/src/smooth/ftspic.h
similarity index 100%
rename from jni/freetype2-android/src/smooth/ftspic.h
rename to love/src/jni/freetype2-android/src/smooth/ftspic.h
diff --git a/jni/freetype2-android/src/smooth/module.mk b/love/src/jni/freetype2-android/src/smooth/module.mk
similarity index 100%
rename from jni/freetype2-android/src/smooth/module.mk
rename to love/src/jni/freetype2-android/src/smooth/module.mk
diff --git a/jni/freetype2-android/src/smooth/rules.mk b/love/src/jni/freetype2-android/src/smooth/rules.mk
similarity index 100%
rename from jni/freetype2-android/src/smooth/rules.mk
rename to love/src/jni/freetype2-android/src/smooth/rules.mk
diff --git a/jni/freetype2-android/src/smooth/smooth.c b/love/src/jni/freetype2-android/src/smooth/smooth.c
similarity index 100%
rename from jni/freetype2-android/src/smooth/smooth.c
rename to love/src/jni/freetype2-android/src/smooth/smooth.c
diff --git a/jni/freetype2-android/src/truetype/Jamfile b/love/src/jni/freetype2-android/src/truetype/Jamfile
similarity index 100%
rename from jni/freetype2-android/src/truetype/Jamfile
rename to love/src/jni/freetype2-android/src/truetype/Jamfile
diff --git a/jni/freetype2-android/src/truetype/module.mk b/love/src/jni/freetype2-android/src/truetype/module.mk
similarity index 100%
rename from jni/freetype2-android/src/truetype/module.mk
rename to love/src/jni/freetype2-android/src/truetype/module.mk
diff --git a/jni/freetype2-android/src/truetype/rules.mk b/love/src/jni/freetype2-android/src/truetype/rules.mk
similarity index 100%
rename from jni/freetype2-android/src/truetype/rules.mk
rename to love/src/jni/freetype2-android/src/truetype/rules.mk
diff --git a/jni/freetype2-android/src/truetype/truetype.c b/love/src/jni/freetype2-android/src/truetype/truetype.c
similarity index 100%
rename from jni/freetype2-android/src/truetype/truetype.c
rename to love/src/jni/freetype2-android/src/truetype/truetype.c
diff --git a/jni/freetype2-android/src/truetype/ttdriver.c b/love/src/jni/freetype2-android/src/truetype/ttdriver.c
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttdriver.c
rename to love/src/jni/freetype2-android/src/truetype/ttdriver.c
diff --git a/jni/freetype2-android/src/truetype/ttdriver.h b/love/src/jni/freetype2-android/src/truetype/ttdriver.h
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttdriver.h
rename to love/src/jni/freetype2-android/src/truetype/ttdriver.h
diff --git a/jni/freetype2-android/src/truetype/tterrors.h b/love/src/jni/freetype2-android/src/truetype/tterrors.h
similarity index 100%
rename from jni/freetype2-android/src/truetype/tterrors.h
rename to love/src/jni/freetype2-android/src/truetype/tterrors.h
diff --git a/jni/freetype2-android/src/truetype/ttgload.c b/love/src/jni/freetype2-android/src/truetype/ttgload.c
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttgload.c
rename to love/src/jni/freetype2-android/src/truetype/ttgload.c
diff --git a/jni/freetype2-android/src/truetype/ttgload.h b/love/src/jni/freetype2-android/src/truetype/ttgload.h
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttgload.h
rename to love/src/jni/freetype2-android/src/truetype/ttgload.h
diff --git a/jni/freetype2-android/src/truetype/ttgxvar.c b/love/src/jni/freetype2-android/src/truetype/ttgxvar.c
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttgxvar.c
rename to love/src/jni/freetype2-android/src/truetype/ttgxvar.c
diff --git a/jni/freetype2-android/src/truetype/ttgxvar.h b/love/src/jni/freetype2-android/src/truetype/ttgxvar.h
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttgxvar.h
rename to love/src/jni/freetype2-android/src/truetype/ttgxvar.h
diff --git a/jni/freetype2-android/src/truetype/ttinterp.c b/love/src/jni/freetype2-android/src/truetype/ttinterp.c
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttinterp.c
rename to love/src/jni/freetype2-android/src/truetype/ttinterp.c
diff --git a/jni/freetype2-android/src/truetype/ttinterp.h b/love/src/jni/freetype2-android/src/truetype/ttinterp.h
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttinterp.h
rename to love/src/jni/freetype2-android/src/truetype/ttinterp.h
diff --git a/jni/freetype2-android/src/truetype/ttobjs.c b/love/src/jni/freetype2-android/src/truetype/ttobjs.c
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttobjs.c
rename to love/src/jni/freetype2-android/src/truetype/ttobjs.c
diff --git a/jni/freetype2-android/src/truetype/ttobjs.h b/love/src/jni/freetype2-android/src/truetype/ttobjs.h
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttobjs.h
rename to love/src/jni/freetype2-android/src/truetype/ttobjs.h
diff --git a/jni/freetype2-android/src/truetype/ttpic.c b/love/src/jni/freetype2-android/src/truetype/ttpic.c
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttpic.c
rename to love/src/jni/freetype2-android/src/truetype/ttpic.c
diff --git a/jni/freetype2-android/src/truetype/ttpic.h b/love/src/jni/freetype2-android/src/truetype/ttpic.h
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttpic.h
rename to love/src/jni/freetype2-android/src/truetype/ttpic.h
diff --git a/jni/freetype2-android/src/truetype/ttpload.c b/love/src/jni/freetype2-android/src/truetype/ttpload.c
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttpload.c
rename to love/src/jni/freetype2-android/src/truetype/ttpload.c
diff --git a/jni/freetype2-android/src/truetype/ttpload.h b/love/src/jni/freetype2-android/src/truetype/ttpload.h
similarity index 100%
rename from jni/freetype2-android/src/truetype/ttpload.h
rename to love/src/jni/freetype2-android/src/truetype/ttpload.h
diff --git a/jni/libmodplug-0.8.8.4/AUTHORS b/love/src/jni/libmodplug-0.8.8.4/AUTHORS
similarity index 100%
rename from jni/libmodplug-0.8.8.4/AUTHORS
rename to love/src/jni/libmodplug-0.8.8.4/AUTHORS
diff --git a/jni/libmodplug-0.8.8.4/Android.mk b/love/src/jni/libmodplug-0.8.8.4/Android.mk
similarity index 100%
rename from jni/libmodplug-0.8.8.4/Android.mk
rename to love/src/jni/libmodplug-0.8.8.4/Android.mk
diff --git a/jni/libmodplug-0.8.8.4/COPYING b/love/src/jni/libmodplug-0.8.8.4/COPYING
similarity index 100%
rename from jni/libmodplug-0.8.8.4/COPYING
rename to love/src/jni/libmodplug-0.8.8.4/COPYING
diff --git a/jni/libmodplug-0.8.8.4/ChangeLog b/love/src/jni/libmodplug-0.8.8.4/ChangeLog
similarity index 100%
rename from jni/libmodplug-0.8.8.4/ChangeLog
rename to love/src/jni/libmodplug-0.8.8.4/ChangeLog
diff --git a/jni/libmodplug-0.8.8.4/INSTALL b/love/src/jni/libmodplug-0.8.8.4/INSTALL
similarity index 100%
rename from jni/libmodplug-0.8.8.4/INSTALL
rename to love/src/jni/libmodplug-0.8.8.4/INSTALL
diff --git a/jni/libmodplug-0.8.8.4/Makefile b/love/src/jni/libmodplug-0.8.8.4/Makefile
similarity index 100%
rename from jni/libmodplug-0.8.8.4/Makefile
rename to love/src/jni/libmodplug-0.8.8.4/Makefile
diff --git a/jni/libmodplug-0.8.8.4/Makefile.am b/love/src/jni/libmodplug-0.8.8.4/Makefile.am
similarity index 100%
rename from jni/libmodplug-0.8.8.4/Makefile.am
rename to love/src/jni/libmodplug-0.8.8.4/Makefile.am
diff --git a/jni/libmodplug-0.8.8.4/Makefile.in b/love/src/jni/libmodplug-0.8.8.4/Makefile.in
similarity index 100%
rename from jni/libmodplug-0.8.8.4/Makefile.in
rename to love/src/jni/libmodplug-0.8.8.4/Makefile.in
diff --git a/jni/libmodplug-0.8.8.4/NEWS b/love/src/jni/libmodplug-0.8.8.4/NEWS
similarity index 100%
rename from jni/libmodplug-0.8.8.4/NEWS
rename to love/src/jni/libmodplug-0.8.8.4/NEWS
diff --git a/jni/libmodplug-0.8.8.4/README b/love/src/jni/libmodplug-0.8.8.4/README
similarity index 100%
rename from jni/libmodplug-0.8.8.4/README
rename to love/src/jni/libmodplug-0.8.8.4/README
diff --git a/jni/libmodplug-0.8.8.4/TODO b/love/src/jni/libmodplug-0.8.8.4/TODO
similarity index 100%
rename from jni/libmodplug-0.8.8.4/TODO
rename to love/src/jni/libmodplug-0.8.8.4/TODO
diff --git a/jni/libmodplug-0.8.8.4/aclocal.m4 b/love/src/jni/libmodplug-0.8.8.4/aclocal.m4
similarity index 100%
rename from jni/libmodplug-0.8.8.4/aclocal.m4
rename to love/src/jni/libmodplug-0.8.8.4/aclocal.m4
diff --git a/jni/libmodplug-0.8.8.4/config.guess b/love/src/jni/libmodplug-0.8.8.4/config.guess
similarity index 100%
rename from jni/libmodplug-0.8.8.4/config.guess
rename to love/src/jni/libmodplug-0.8.8.4/config.guess
diff --git a/jni/libmodplug-0.8.8.4/config.log b/love/src/jni/libmodplug-0.8.8.4/config.log
similarity index 100%
rename from jni/libmodplug-0.8.8.4/config.log
rename to love/src/jni/libmodplug-0.8.8.4/config.log
diff --git a/jni/libmodplug-0.8.8.4/config.status b/love/src/jni/libmodplug-0.8.8.4/config.status
similarity index 100%
rename from jni/libmodplug-0.8.8.4/config.status
rename to love/src/jni/libmodplug-0.8.8.4/config.status
diff --git a/jni/libmodplug-0.8.8.4/config.sub b/love/src/jni/libmodplug-0.8.8.4/config.sub
similarity index 100%
rename from jni/libmodplug-0.8.8.4/config.sub
rename to love/src/jni/libmodplug-0.8.8.4/config.sub
diff --git a/jni/libmodplug-0.8.8.4/configure b/love/src/jni/libmodplug-0.8.8.4/configure
similarity index 100%
rename from jni/libmodplug-0.8.8.4/configure
rename to love/src/jni/libmodplug-0.8.8.4/configure
diff --git a/jni/libmodplug-0.8.8.4/configure.in b/love/src/jni/libmodplug-0.8.8.4/configure.in
similarity index 100%
rename from jni/libmodplug-0.8.8.4/configure.in
rename to love/src/jni/libmodplug-0.8.8.4/configure.in
diff --git a/jni/libmodplug-0.8.8.4/depcomp b/love/src/jni/libmodplug-0.8.8.4/depcomp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/depcomp
rename to love/src/jni/libmodplug-0.8.8.4/depcomp
diff --git a/jni/libmodplug-0.8.8.4/install-sh b/love/src/jni/libmodplug-0.8.8.4/install-sh
similarity index 100%
rename from jni/libmodplug-0.8.8.4/install-sh
rename to love/src/jni/libmodplug-0.8.8.4/install-sh
diff --git a/jni/libmodplug-0.8.8.4/libmodplug.pc b/love/src/jni/libmodplug-0.8.8.4/libmodplug.pc
similarity index 100%
rename from jni/libmodplug-0.8.8.4/libmodplug.pc
rename to love/src/jni/libmodplug-0.8.8.4/libmodplug.pc
diff --git a/jni/libmodplug-0.8.8.4/libmodplug.pc.in b/love/src/jni/libmodplug-0.8.8.4/libmodplug.pc.in
similarity index 100%
rename from jni/libmodplug-0.8.8.4/libmodplug.pc.in
rename to love/src/jni/libmodplug-0.8.8.4/libmodplug.pc.in
diff --git a/jni/libmodplug-0.8.8.4/libtool b/love/src/jni/libmodplug-0.8.8.4/libtool
similarity index 100%
rename from jni/libmodplug-0.8.8.4/libtool
rename to love/src/jni/libmodplug-0.8.8.4/libtool
diff --git a/jni/libmodplug-0.8.8.4/ltmain.sh b/love/src/jni/libmodplug-0.8.8.4/ltmain.sh
similarity index 100%
rename from jni/libmodplug-0.8.8.4/ltmain.sh
rename to love/src/jni/libmodplug-0.8.8.4/ltmain.sh
diff --git a/jni/libmodplug-0.8.8.4/missing b/love/src/jni/libmodplug-0.8.8.4/missing
similarity index 100%
rename from jni/libmodplug-0.8.8.4/missing
rename to love/src/jni/libmodplug-0.8.8.4/missing
diff --git a/jni/libmodplug-0.8.8.4/src/Makefile b/love/src/jni/libmodplug-0.8.8.4/src/Makefile
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/Makefile
rename to love/src/jni/libmodplug-0.8.8.4/src/Makefile
diff --git a/jni/libmodplug-0.8.8.4/src/Makefile.am b/love/src/jni/libmodplug-0.8.8.4/src/Makefile.am
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/Makefile.am
rename to love/src/jni/libmodplug-0.8.8.4/src/Makefile.am
diff --git a/jni/libmodplug-0.8.8.4/src/Makefile.in b/love/src/jni/libmodplug-0.8.8.4/src/Makefile.in
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/Makefile.in
rename to love/src/jni/libmodplug-0.8.8.4/src/Makefile.in
diff --git a/jni/libmodplug-0.8.8.4/src/config.h b/love/src/jni/libmodplug-0.8.8.4/src/config.h
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/config.h
rename to love/src/jni/libmodplug-0.8.8.4/src/config.h
diff --git a/jni/libmodplug-0.8.8.4/src/config.h.in b/love/src/jni/libmodplug-0.8.8.4/src/config.h.in
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/config.h.in
rename to love/src/jni/libmodplug-0.8.8.4/src/config.h.in
diff --git a/jni/libmodplug-0.8.8.4/src/fastmix.cpp b/love/src/jni/libmodplug-0.8.8.4/src/fastmix.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/fastmix.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/fastmix.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/libmodplug.la b/love/src/jni/libmodplug-0.8.8.4/src/libmodplug.la
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/libmodplug.la
rename to love/src/jni/libmodplug-0.8.8.4/src/libmodplug.la
diff --git a/jni/libmodplug-0.8.8.4/src/libmodplug/it_defs.h b/love/src/jni/libmodplug-0.8.8.4/src/libmodplug/it_defs.h
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/libmodplug/it_defs.h
rename to love/src/jni/libmodplug-0.8.8.4/src/libmodplug/it_defs.h
diff --git a/jni/libmodplug-0.8.8.4/src/libmodplug/sndfile.h b/love/src/jni/libmodplug-0.8.8.4/src/libmodplug/sndfile.h
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/libmodplug/sndfile.h
rename to love/src/jni/libmodplug-0.8.8.4/src/libmodplug/sndfile.h
diff --git a/jni/libmodplug-0.8.8.4/src/libmodplug/stdafx.h b/love/src/jni/libmodplug-0.8.8.4/src/libmodplug/stdafx.h
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/libmodplug/stdafx.h
rename to love/src/jni/libmodplug-0.8.8.4/src/libmodplug/stdafx.h
diff --git a/jni/libmodplug-0.8.8.4/src/load_669.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_669.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_669.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_669.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_abc.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_abc.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_abc.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_abc.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_amf.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_amf.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_amf.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_amf.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_ams.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_ams.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_ams.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_ams.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_dbm.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_dbm.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_dbm.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_dbm.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_dmf.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_dmf.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_dmf.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_dmf.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_dsm.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_dsm.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_dsm.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_dsm.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_far.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_far.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_far.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_far.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_it.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_it.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_it.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_it.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_j2b.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_j2b.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_j2b.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_j2b.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_mdl.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_mdl.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_mdl.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_mdl.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_med.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_med.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_med.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_med.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_mid.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_mid.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_mid.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_mid.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_mod.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_mod.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_mod.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_mod.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_mt2.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_mt2.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_mt2.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_mt2.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_mtm.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_mtm.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_mtm.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_mtm.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_okt.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_okt.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_okt.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_okt.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_pat.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_pat.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_pat.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_pat.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_pat.h b/love/src/jni/libmodplug-0.8.8.4/src/load_pat.h
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_pat.h
rename to love/src/jni/libmodplug-0.8.8.4/src/load_pat.h
diff --git a/jni/libmodplug-0.8.8.4/src/load_psm.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_psm.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_psm.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_psm.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_ptm.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_ptm.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_ptm.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_ptm.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_s3m.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_s3m.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_s3m.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_s3m.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_stm.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_stm.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_stm.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_stm.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_ult.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_ult.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_ult.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_ult.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_umx.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_umx.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_umx.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_umx.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_wav.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_wav.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_wav.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_wav.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/load_xm.cpp b/love/src/jni/libmodplug-0.8.8.4/src/load_xm.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/load_xm.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/load_xm.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/mmcmp.cpp b/love/src/jni/libmodplug-0.8.8.4/src/mmcmp.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/mmcmp.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/mmcmp.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/modplug.cpp b/love/src/jni/libmodplug-0.8.8.4/src/modplug.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/modplug.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/modplug.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/modplug.h b/love/src/jni/libmodplug-0.8.8.4/src/modplug.h
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/modplug.h
rename to love/src/jni/libmodplug-0.8.8.4/src/modplug.h
diff --git a/jni/libmodplug-0.8.8.4/src/snd_dsp.cpp b/love/src/jni/libmodplug-0.8.8.4/src/snd_dsp.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/snd_dsp.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/snd_dsp.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/snd_flt.cpp b/love/src/jni/libmodplug-0.8.8.4/src/snd_flt.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/snd_flt.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/snd_flt.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/snd_fx.cpp b/love/src/jni/libmodplug-0.8.8.4/src/snd_fx.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/snd_fx.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/snd_fx.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/sndfile.cpp b/love/src/jni/libmodplug-0.8.8.4/src/sndfile.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/sndfile.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/sndfile.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/sndmix.cpp b/love/src/jni/libmodplug-0.8.8.4/src/sndmix.cpp
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/sndmix.cpp
rename to love/src/jni/libmodplug-0.8.8.4/src/sndmix.cpp
diff --git a/jni/libmodplug-0.8.8.4/src/stamp-h1 b/love/src/jni/libmodplug-0.8.8.4/src/stamp-h1
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/stamp-h1
rename to love/src/jni/libmodplug-0.8.8.4/src/stamp-h1
diff --git a/jni/libmodplug-0.8.8.4/src/tables.h b/love/src/jni/libmodplug-0.8.8.4/src/tables.h
similarity index 100%
rename from jni/libmodplug-0.8.8.4/src/tables.h
rename to love/src/jni/libmodplug-0.8.8.4/src/tables.h
diff --git a/jni/libogg-1.3.2/AUTHORS b/love/src/jni/libogg-1.3.2/AUTHORS
similarity index 100%
rename from jni/libogg-1.3.2/AUTHORS
rename to love/src/jni/libogg-1.3.2/AUTHORS
diff --git a/jni/libogg-1.3.2/Android.mk b/love/src/jni/libogg-1.3.2/Android.mk
similarity index 100%
rename from jni/libogg-1.3.2/Android.mk
rename to love/src/jni/libogg-1.3.2/Android.mk
diff --git a/jni/libogg-1.3.2/CHANGES b/love/src/jni/libogg-1.3.2/CHANGES
similarity index 100%
rename from jni/libogg-1.3.2/CHANGES
rename to love/src/jni/libogg-1.3.2/CHANGES
diff --git a/jni/libogg-1.3.2/COPYING b/love/src/jni/libogg-1.3.2/COPYING
similarity index 100%
rename from jni/libogg-1.3.2/COPYING
rename to love/src/jni/libogg-1.3.2/COPYING
diff --git a/jni/libogg-1.3.2/Makefile.am b/love/src/jni/libogg-1.3.2/Makefile.am
similarity index 100%
rename from jni/libogg-1.3.2/Makefile.am
rename to love/src/jni/libogg-1.3.2/Makefile.am
diff --git a/jni/libogg-1.3.2/Makefile.in b/love/src/jni/libogg-1.3.2/Makefile.in
similarity index 100%
rename from jni/libogg-1.3.2/Makefile.in
rename to love/src/jni/libogg-1.3.2/Makefile.in
diff --git a/jni/libogg-1.3.2/README b/love/src/jni/libogg-1.3.2/README
similarity index 100%
rename from jni/libogg-1.3.2/README
rename to love/src/jni/libogg-1.3.2/README
diff --git a/jni/libogg-1.3.2/compile b/love/src/jni/libogg-1.3.2/compile
similarity index 100%
rename from jni/libogg-1.3.2/compile
rename to love/src/jni/libogg-1.3.2/compile
diff --git a/jni/libogg-1.3.2/config.guess b/love/src/jni/libogg-1.3.2/config.guess
similarity index 100%
rename from jni/libogg-1.3.2/config.guess
rename to love/src/jni/libogg-1.3.2/config.guess
diff --git a/jni/libogg-1.3.2/config.h.in b/love/src/jni/libogg-1.3.2/config.h.in
similarity index 100%
rename from jni/libogg-1.3.2/config.h.in
rename to love/src/jni/libogg-1.3.2/config.h.in
diff --git a/jni/libogg-1.3.2/config.sub b/love/src/jni/libogg-1.3.2/config.sub
similarity index 100%
rename from jni/libogg-1.3.2/config.sub
rename to love/src/jni/libogg-1.3.2/config.sub
diff --git a/jni/libogg-1.3.2/configure b/love/src/jni/libogg-1.3.2/configure
similarity index 100%
rename from jni/libogg-1.3.2/configure
rename to love/src/jni/libogg-1.3.2/configure
diff --git a/jni/libogg-1.3.2/configure.in b/love/src/jni/libogg-1.3.2/configure.in
similarity index 100%
rename from jni/libogg-1.3.2/configure.in
rename to love/src/jni/libogg-1.3.2/configure.in
diff --git a/jni/libogg-1.3.2/depcomp b/love/src/jni/libogg-1.3.2/depcomp
similarity index 100%
rename from jni/libogg-1.3.2/depcomp
rename to love/src/jni/libogg-1.3.2/depcomp
diff --git a/jni/libogg-1.3.2/include/Makefile.am b/love/src/jni/libogg-1.3.2/include/Makefile.am
similarity index 100%
rename from jni/libogg-1.3.2/include/Makefile.am
rename to love/src/jni/libogg-1.3.2/include/Makefile.am
diff --git a/jni/libogg-1.3.2/include/Makefile.in b/love/src/jni/libogg-1.3.2/include/Makefile.in
similarity index 100%
rename from jni/libogg-1.3.2/include/Makefile.in
rename to love/src/jni/libogg-1.3.2/include/Makefile.in
diff --git a/jni/libogg-1.3.2/include/ogg/Makefile.am b/love/src/jni/libogg-1.3.2/include/ogg/Makefile.am
similarity index 100%
rename from jni/libogg-1.3.2/include/ogg/Makefile.am
rename to love/src/jni/libogg-1.3.2/include/ogg/Makefile.am
diff --git a/jni/libogg-1.3.2/include/ogg/Makefile.in b/love/src/jni/libogg-1.3.2/include/ogg/Makefile.in
similarity index 100%
rename from jni/libogg-1.3.2/include/ogg/Makefile.in
rename to love/src/jni/libogg-1.3.2/include/ogg/Makefile.in
diff --git a/jni/libogg-1.3.2/include/ogg/config_types.h b/love/src/jni/libogg-1.3.2/include/ogg/config_types.h
similarity index 100%
rename from jni/libogg-1.3.2/include/ogg/config_types.h
rename to love/src/jni/libogg-1.3.2/include/ogg/config_types.h
diff --git a/jni/libogg-1.3.2/include/ogg/config_types.h.in b/love/src/jni/libogg-1.3.2/include/ogg/config_types.h.in
similarity index 100%
rename from jni/libogg-1.3.2/include/ogg/config_types.h.in
rename to love/src/jni/libogg-1.3.2/include/ogg/config_types.h.in
diff --git a/jni/libogg-1.3.2/include/ogg/ogg.h b/love/src/jni/libogg-1.3.2/include/ogg/ogg.h
similarity index 100%
rename from jni/libogg-1.3.2/include/ogg/ogg.h
rename to love/src/jni/libogg-1.3.2/include/ogg/ogg.h
diff --git a/jni/libogg-1.3.2/include/ogg/os_types.h b/love/src/jni/libogg-1.3.2/include/ogg/os_types.h
similarity index 100%
rename from jni/libogg-1.3.2/include/ogg/os_types.h
rename to love/src/jni/libogg-1.3.2/include/ogg/os_types.h
diff --git a/jni/libogg-1.3.2/install-sh b/love/src/jni/libogg-1.3.2/install-sh
similarity index 100%
rename from jni/libogg-1.3.2/install-sh
rename to love/src/jni/libogg-1.3.2/install-sh
diff --git a/jni/libogg-1.3.2/libogg.spec b/love/src/jni/libogg-1.3.2/libogg.spec
similarity index 100%
rename from jni/libogg-1.3.2/libogg.spec
rename to love/src/jni/libogg-1.3.2/libogg.spec
diff --git a/jni/libogg-1.3.2/libogg.spec.in b/love/src/jni/libogg-1.3.2/libogg.spec.in
similarity index 100%
rename from jni/libogg-1.3.2/libogg.spec.in
rename to love/src/jni/libogg-1.3.2/libogg.spec.in
diff --git a/jni/libogg-1.3.2/macosx/English.lproj/InfoPlist.strings b/love/src/jni/libogg-1.3.2/macosx/English.lproj/InfoPlist.strings
similarity index 100%
rename from jni/libogg-1.3.2/macosx/English.lproj/InfoPlist.strings
rename to love/src/jni/libogg-1.3.2/macosx/English.lproj/InfoPlist.strings
diff --git a/jni/libogg-1.3.2/macosx/Info.plist b/love/src/jni/libogg-1.3.2/macosx/Info.plist
similarity index 100%
rename from jni/libogg-1.3.2/macosx/Info.plist
rename to love/src/jni/libogg-1.3.2/macosx/Info.plist
diff --git a/jni/libogg-1.3.2/macosx/Ogg.xcodeproj/project.pbxproj b/love/src/jni/libogg-1.3.2/macosx/Ogg.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/libogg-1.3.2/macosx/Ogg.xcodeproj/project.pbxproj
rename to love/src/jni/libogg-1.3.2/macosx/Ogg.xcodeproj/project.pbxproj
diff --git a/jni/libogg-1.3.2/macosx/Ogg_Prefix.pch b/love/src/jni/libogg-1.3.2/macosx/Ogg_Prefix.pch
similarity index 100%
rename from jni/libogg-1.3.2/macosx/Ogg_Prefix.pch
rename to love/src/jni/libogg-1.3.2/macosx/Ogg_Prefix.pch
diff --git a/jni/libogg-1.3.2/missing b/love/src/jni/libogg-1.3.2/missing
similarity index 100%
rename from jni/libogg-1.3.2/missing
rename to love/src/jni/libogg-1.3.2/missing
diff --git a/jni/libogg-1.3.2/ogg-uninstalled.pc.in b/love/src/jni/libogg-1.3.2/ogg-uninstalled.pc.in
similarity index 100%
rename from jni/libogg-1.3.2/ogg-uninstalled.pc.in
rename to love/src/jni/libogg-1.3.2/ogg-uninstalled.pc.in
diff --git a/jni/libogg-1.3.2/ogg.m4 b/love/src/jni/libogg-1.3.2/ogg.m4
similarity index 100%
rename from jni/libogg-1.3.2/ogg.m4
rename to love/src/jni/libogg-1.3.2/ogg.m4
diff --git a/jni/libogg-1.3.2/ogg.pc.in b/love/src/jni/libogg-1.3.2/ogg.pc.in
similarity index 100%
rename from jni/libogg-1.3.2/ogg.pc.in
rename to love/src/jni/libogg-1.3.2/ogg.pc.in
diff --git a/jni/libogg-1.3.2/src/Makefile.am b/love/src/jni/libogg-1.3.2/src/Makefile.am
similarity index 100%
rename from jni/libogg-1.3.2/src/Makefile.am
rename to love/src/jni/libogg-1.3.2/src/Makefile.am
diff --git a/jni/libogg-1.3.2/src/Makefile.in b/love/src/jni/libogg-1.3.2/src/Makefile.in
similarity index 100%
rename from jni/libogg-1.3.2/src/Makefile.in
rename to love/src/jni/libogg-1.3.2/src/Makefile.in
diff --git a/jni/libogg-1.3.2/src/bitwise.c b/love/src/jni/libogg-1.3.2/src/bitwise.c
similarity index 100%
rename from jni/libogg-1.3.2/src/bitwise.c
rename to love/src/jni/libogg-1.3.2/src/bitwise.c
diff --git a/jni/libogg-1.3.2/src/framing.c b/love/src/jni/libogg-1.3.2/src/framing.c
similarity index 100%
rename from jni/libogg-1.3.2/src/framing.c
rename to love/src/jni/libogg-1.3.2/src/framing.c
diff --git a/jni/libtheora-1.2.0alpha1/AUTHORS b/love/src/jni/libtheora-1.2.0alpha1/AUTHORS
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/AUTHORS
rename to love/src/jni/libtheora-1.2.0alpha1/AUTHORS
diff --git a/jni/libtheora-1.2.0alpha1/Android.mk b/love/src/jni/libtheora-1.2.0alpha1/Android.mk
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/Android.mk
rename to love/src/jni/libtheora-1.2.0alpha1/Android.mk
diff --git a/jni/libtheora-1.2.0alpha1/CHANGES b/love/src/jni/libtheora-1.2.0alpha1/CHANGES
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/CHANGES
rename to love/src/jni/libtheora-1.2.0alpha1/CHANGES
diff --git a/jni/libtheora-1.2.0alpha1/COPYING b/love/src/jni/libtheora-1.2.0alpha1/COPYING
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/COPYING
rename to love/src/jni/libtheora-1.2.0alpha1/COPYING
diff --git a/jni/libtheora-1.2.0alpha1/LICENSE b/love/src/jni/libtheora-1.2.0alpha1/LICENSE
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/LICENSE
rename to love/src/jni/libtheora-1.2.0alpha1/LICENSE
diff --git a/jni/libtheora-1.2.0alpha1/README b/love/src/jni/libtheora-1.2.0alpha1/README
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/README
rename to love/src/jni/libtheora-1.2.0alpha1/README
diff --git a/jni/libtheora-1.2.0alpha1/README.Android.md b/love/src/jni/libtheora-1.2.0alpha1/README.Android.md
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/README.Android.md
rename to love/src/jni/libtheora-1.2.0alpha1/README.Android.md
diff --git a/jni/libtheora-1.2.0alpha1/config.h b/love/src/jni/libtheora-1.2.0alpha1/config.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/config.h
rename to love/src/jni/libtheora-1.2.0alpha1/config.h
diff --git a/jni/libtheora-1.2.0alpha1/configure_android.sh b/love/src/jni/libtheora-1.2.0alpha1/configure_android.sh
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/configure_android.sh
rename to love/src/jni/libtheora-1.2.0alpha1/configure_android.sh
diff --git a/jni/libtheora-1.2.0alpha1/include/theora/Makefile b/love/src/jni/libtheora-1.2.0alpha1/include/theora/Makefile
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/include/theora/Makefile
rename to love/src/jni/libtheora-1.2.0alpha1/include/theora/Makefile
diff --git a/jni/libtheora-1.2.0alpha1/include/theora/Makefile.am b/love/src/jni/libtheora-1.2.0alpha1/include/theora/Makefile.am
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/include/theora/Makefile.am
rename to love/src/jni/libtheora-1.2.0alpha1/include/theora/Makefile.am
diff --git a/jni/libtheora-1.2.0alpha1/include/theora/Makefile.in b/love/src/jni/libtheora-1.2.0alpha1/include/theora/Makefile.in
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/include/theora/Makefile.in
rename to love/src/jni/libtheora-1.2.0alpha1/include/theora/Makefile.in
diff --git a/jni/libtheora-1.2.0alpha1/include/theora/codec.h b/love/src/jni/libtheora-1.2.0alpha1/include/theora/codec.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/include/theora/codec.h
rename to love/src/jni/libtheora-1.2.0alpha1/include/theora/codec.h
diff --git a/jni/libtheora-1.2.0alpha1/include/theora/theora.h b/love/src/jni/libtheora-1.2.0alpha1/include/theora/theora.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/include/theora/theora.h
rename to love/src/jni/libtheora-1.2.0alpha1/include/theora/theora.h
diff --git a/jni/libtheora-1.2.0alpha1/include/theora/theoradec.h b/love/src/jni/libtheora-1.2.0alpha1/include/theora/theoradec.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/include/theora/theoradec.h
rename to love/src/jni/libtheora-1.2.0alpha1/include/theora/theoradec.h
diff --git a/jni/libtheora-1.2.0alpha1/include/theora/theoraenc.h b/love/src/jni/libtheora-1.2.0alpha1/include/theora/theoraenc.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/include/theora/theoraenc.h
rename to love/src/jni/libtheora-1.2.0alpha1/include/theora/theoraenc.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/analyze.c b/love/src/jni/libtheora-1.2.0alpha1/lib/analyze.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/analyze.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/analyze.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/apiwrapper.c b/love/src/jni/libtheora-1.2.0alpha1/lib/apiwrapper.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/apiwrapper.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/apiwrapper.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/apiwrapper.h b/love/src/jni/libtheora-1.2.0alpha1/lib/apiwrapper.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/apiwrapper.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/apiwrapper.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/arm/armbits.h b/love/src/jni/libtheora-1.2.0alpha1/lib/arm/armbits.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/arm/armbits.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/arm/armbits.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/arm/armcpu.c b/love/src/jni/libtheora-1.2.0alpha1/lib/arm/armcpu.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/arm/armcpu.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/arm/armcpu.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/arm/armcpu.h b/love/src/jni/libtheora-1.2.0alpha1/lib/arm/armcpu.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/arm/armcpu.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/arm/armcpu.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/arm/armenc.c b/love/src/jni/libtheora-1.2.0alpha1/lib/arm/armenc.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/arm/armenc.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/arm/armenc.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/arm/armenc.h b/love/src/jni/libtheora-1.2.0alpha1/lib/arm/armenc.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/arm/armenc.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/arm/armenc.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/arm/armint.h b/love/src/jni/libtheora-1.2.0alpha1/lib/arm/armint.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/arm/armint.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/arm/armint.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/arm/armstate.c b/love/src/jni/libtheora-1.2.0alpha1/lib/arm/armstate.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/arm/armstate.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/arm/armstate.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/bitpack.c b/love/src/jni/libtheora-1.2.0alpha1/lib/bitpack.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/bitpack.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/bitpack.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/bitpack.h b/love/src/jni/libtheora-1.2.0alpha1/lib/bitpack.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/bitpack.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/bitpack.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/collect.c b/love/src/jni/libtheora-1.2.0alpha1/lib/collect.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/collect.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/collect.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/collect.h b/love/src/jni/libtheora-1.2.0alpha1/lib/collect.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/collect.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/collect.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/dct.h b/love/src/jni/libtheora-1.2.0alpha1/lib/dct.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/dct.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/dct.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/decapiwrapper.c b/love/src/jni/libtheora-1.2.0alpha1/lib/decapiwrapper.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/decapiwrapper.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/decapiwrapper.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/decinfo.c b/love/src/jni/libtheora-1.2.0alpha1/lib/decinfo.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/decinfo.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/decinfo.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/decint.h b/love/src/jni/libtheora-1.2.0alpha1/lib/decint.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/decint.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/decint.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/decode.c b/love/src/jni/libtheora-1.2.0alpha1/lib/decode.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/decode.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/decode.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/dequant.c b/love/src/jni/libtheora-1.2.0alpha1/lib/dequant.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/dequant.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/dequant.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/dequant.h b/love/src/jni/libtheora-1.2.0alpha1/lib/dequant.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/dequant.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/dequant.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/encapiwrapper.c b/love/src/jni/libtheora-1.2.0alpha1/lib/encapiwrapper.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/encapiwrapper.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/encapiwrapper.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/encfrag.c b/love/src/jni/libtheora-1.2.0alpha1/lib/encfrag.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/encfrag.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/encfrag.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/encinfo.c b/love/src/jni/libtheora-1.2.0alpha1/lib/encinfo.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/encinfo.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/encinfo.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/encint.h b/love/src/jni/libtheora-1.2.0alpha1/lib/encint.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/encint.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/encint.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/encode.c b/love/src/jni/libtheora-1.2.0alpha1/lib/encode.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/encode.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/encode.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/encoder_disabled.c b/love/src/jni/libtheora-1.2.0alpha1/lib/encoder_disabled.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/encoder_disabled.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/encoder_disabled.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/enquant.c b/love/src/jni/libtheora-1.2.0alpha1/lib/enquant.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/enquant.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/enquant.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/enquant.h b/love/src/jni/libtheora-1.2.0alpha1/lib/enquant.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/enquant.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/enquant.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/fdct.c b/love/src/jni/libtheora-1.2.0alpha1/lib/fdct.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/fdct.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/fdct.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/fragment.c b/love/src/jni/libtheora-1.2.0alpha1/lib/fragment.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/fragment.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/fragment.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/huffdec.c b/love/src/jni/libtheora-1.2.0alpha1/lib/huffdec.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/huffdec.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/huffdec.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/huffdec.h b/love/src/jni/libtheora-1.2.0alpha1/lib/huffdec.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/huffdec.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/huffdec.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/huffenc.c b/love/src/jni/libtheora-1.2.0alpha1/lib/huffenc.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/huffenc.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/huffenc.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/huffenc.h b/love/src/jni/libtheora-1.2.0alpha1/lib/huffenc.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/huffenc.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/huffenc.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/huffman.h b/love/src/jni/libtheora-1.2.0alpha1/lib/huffman.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/huffman.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/huffman.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/idct.c b/love/src/jni/libtheora-1.2.0alpha1/lib/idct.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/idct.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/idct.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/info.c b/love/src/jni/libtheora-1.2.0alpha1/lib/info.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/info.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/info.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/internal.c b/love/src/jni/libtheora-1.2.0alpha1/lib/internal.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/internal.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/internal.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/internal.h b/love/src/jni/libtheora-1.2.0alpha1/lib/internal.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/internal.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/internal.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/mathops.c b/love/src/jni/libtheora-1.2.0alpha1/lib/mathops.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/mathops.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/mathops.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/mathops.h b/love/src/jni/libtheora-1.2.0alpha1/lib/mathops.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/mathops.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/mathops.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/mcenc.c b/love/src/jni/libtheora-1.2.0alpha1/lib/mcenc.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/mcenc.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/mcenc.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/modedec.h b/love/src/jni/libtheora-1.2.0alpha1/lib/modedec.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/modedec.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/modedec.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/ocintrin.h b/love/src/jni/libtheora-1.2.0alpha1/lib/ocintrin.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/ocintrin.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/ocintrin.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/quant.c b/love/src/jni/libtheora-1.2.0alpha1/lib/quant.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/quant.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/quant.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/quant.h b/love/src/jni/libtheora-1.2.0alpha1/lib/quant.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/quant.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/quant.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/rate.c b/love/src/jni/libtheora-1.2.0alpha1/lib/rate.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/rate.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/rate.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/state.c b/love/src/jni/libtheora-1.2.0alpha1/lib/state.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/state.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/state.c
diff --git a/jni/libtheora-1.2.0alpha1/lib/state.h b/love/src/jni/libtheora-1.2.0alpha1/lib/state.h
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/state.h
rename to love/src/jni/libtheora-1.2.0alpha1/lib/state.h
diff --git a/jni/libtheora-1.2.0alpha1/lib/tokenize.c b/love/src/jni/libtheora-1.2.0alpha1/lib/tokenize.c
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/lib/tokenize.c
rename to love/src/jni/libtheora-1.2.0alpha1/lib/tokenize.c
diff --git a/jni/libtheora-1.2.0alpha1/ndkenv.sh b/love/src/jni/libtheora-1.2.0alpha1/ndkenv.sh
similarity index 100%
rename from jni/libtheora-1.2.0alpha1/ndkenv.sh
rename to love/src/jni/libtheora-1.2.0alpha1/ndkenv.sh
diff --git a/jni/libvorbis-1.3.5/AUTHORS b/love/src/jni/libvorbis-1.3.5/AUTHORS
similarity index 100%
rename from jni/libvorbis-1.3.5/AUTHORS
rename to love/src/jni/libvorbis-1.3.5/AUTHORS
diff --git a/jni/libvorbis-1.3.5/Android.mk b/love/src/jni/libvorbis-1.3.5/Android.mk
similarity index 100%
rename from jni/libvorbis-1.3.5/Android.mk
rename to love/src/jni/libvorbis-1.3.5/Android.mk
diff --git a/jni/libvorbis-1.3.5/CHANGES b/love/src/jni/libvorbis-1.3.5/CHANGES
similarity index 100%
rename from jni/libvorbis-1.3.5/CHANGES
rename to love/src/jni/libvorbis-1.3.5/CHANGES
diff --git a/jni/libvorbis-1.3.5/COPYING b/love/src/jni/libvorbis-1.3.5/COPYING
similarity index 100%
rename from jni/libvorbis-1.3.5/COPYING
rename to love/src/jni/libvorbis-1.3.5/COPYING
diff --git a/jni/libvorbis-1.3.5/Makefile.am b/love/src/jni/libvorbis-1.3.5/Makefile.am
similarity index 100%
rename from jni/libvorbis-1.3.5/Makefile.am
rename to love/src/jni/libvorbis-1.3.5/Makefile.am
diff --git a/jni/libvorbis-1.3.5/Makefile.in b/love/src/jni/libvorbis-1.3.5/Makefile.in
similarity index 100%
rename from jni/libvorbis-1.3.5/Makefile.in
rename to love/src/jni/libvorbis-1.3.5/Makefile.in
diff --git a/jni/libvorbis-1.3.5/README b/love/src/jni/libvorbis-1.3.5/README
similarity index 100%
rename from jni/libvorbis-1.3.5/README
rename to love/src/jni/libvorbis-1.3.5/README
diff --git a/jni/libvorbis-1.3.5/autogen.sh b/love/src/jni/libvorbis-1.3.5/autogen.sh
similarity index 100%
rename from jni/libvorbis-1.3.5/autogen.sh
rename to love/src/jni/libvorbis-1.3.5/autogen.sh
diff --git a/jni/libvorbis-1.3.5/compile b/love/src/jni/libvorbis-1.3.5/compile
similarity index 100%
rename from jni/libvorbis-1.3.5/compile
rename to love/src/jni/libvorbis-1.3.5/compile
diff --git a/jni/libvorbis-1.3.5/config.guess b/love/src/jni/libvorbis-1.3.5/config.guess
similarity index 100%
rename from jni/libvorbis-1.3.5/config.guess
rename to love/src/jni/libvorbis-1.3.5/config.guess
diff --git a/jni/libvorbis-1.3.5/config.h.in b/love/src/jni/libvorbis-1.3.5/config.h.in
similarity index 100%
rename from jni/libvorbis-1.3.5/config.h.in
rename to love/src/jni/libvorbis-1.3.5/config.h.in
diff --git a/jni/libvorbis-1.3.5/config.sub b/love/src/jni/libvorbis-1.3.5/config.sub
similarity index 100%
rename from jni/libvorbis-1.3.5/config.sub
rename to love/src/jni/libvorbis-1.3.5/config.sub
diff --git a/jni/libvorbis-1.3.5/configure.ac b/love/src/jni/libvorbis-1.3.5/configure.ac
similarity index 100%
rename from jni/libvorbis-1.3.5/configure.ac
rename to love/src/jni/libvorbis-1.3.5/configure.ac
diff --git a/jni/libvorbis-1.3.5/depcomp b/love/src/jni/libvorbis-1.3.5/depcomp
similarity index 100%
rename from jni/libvorbis-1.3.5/depcomp
rename to love/src/jni/libvorbis-1.3.5/depcomp
diff --git a/jni/libvorbis-1.3.5/examples/Makefile.am b/love/src/jni/libvorbis-1.3.5/examples/Makefile.am
similarity index 100%
rename from jni/libvorbis-1.3.5/examples/Makefile.am
rename to love/src/jni/libvorbis-1.3.5/examples/Makefile.am
diff --git a/jni/libvorbis-1.3.5/examples/Makefile.in b/love/src/jni/libvorbis-1.3.5/examples/Makefile.in
similarity index 100%
rename from jni/libvorbis-1.3.5/examples/Makefile.in
rename to love/src/jni/libvorbis-1.3.5/examples/Makefile.in
diff --git a/jni/libvorbis-1.3.5/examples/chaining_example.c b/love/src/jni/libvorbis-1.3.5/examples/chaining_example.c
similarity index 100%
rename from jni/libvorbis-1.3.5/examples/chaining_example.c
rename to love/src/jni/libvorbis-1.3.5/examples/chaining_example.c
diff --git a/jni/libvorbis-1.3.5/examples/decoder_example.c b/love/src/jni/libvorbis-1.3.5/examples/decoder_example.c
similarity index 100%
rename from jni/libvorbis-1.3.5/examples/decoder_example.c
rename to love/src/jni/libvorbis-1.3.5/examples/decoder_example.c
diff --git a/jni/libvorbis-1.3.5/examples/encoder_example.c b/love/src/jni/libvorbis-1.3.5/examples/encoder_example.c
similarity index 100%
rename from jni/libvorbis-1.3.5/examples/encoder_example.c
rename to love/src/jni/libvorbis-1.3.5/examples/encoder_example.c
diff --git a/jni/libvorbis-1.3.5/examples/frameview.pl b/love/src/jni/libvorbis-1.3.5/examples/frameview.pl
similarity index 100%
rename from jni/libvorbis-1.3.5/examples/frameview.pl
rename to love/src/jni/libvorbis-1.3.5/examples/frameview.pl
diff --git a/jni/libvorbis-1.3.5/examples/seeking_example.c b/love/src/jni/libvorbis-1.3.5/examples/seeking_example.c
similarity index 100%
rename from jni/libvorbis-1.3.5/examples/seeking_example.c
rename to love/src/jni/libvorbis-1.3.5/examples/seeking_example.c
diff --git a/jni/libvorbis-1.3.5/examples/vorbisfile_example.c b/love/src/jni/libvorbis-1.3.5/examples/vorbisfile_example.c
similarity index 100%
rename from jni/libvorbis-1.3.5/examples/vorbisfile_example.c
rename to love/src/jni/libvorbis-1.3.5/examples/vorbisfile_example.c
diff --git a/jni/libvorbis-1.3.5/include/Makefile.am b/love/src/jni/libvorbis-1.3.5/include/Makefile.am
similarity index 100%
rename from jni/libvorbis-1.3.5/include/Makefile.am
rename to love/src/jni/libvorbis-1.3.5/include/Makefile.am
diff --git a/jni/libvorbis-1.3.5/include/Makefile.in b/love/src/jni/libvorbis-1.3.5/include/Makefile.in
similarity index 100%
rename from jni/libvorbis-1.3.5/include/Makefile.in
rename to love/src/jni/libvorbis-1.3.5/include/Makefile.in
diff --git a/jni/libvorbis-1.3.5/include/vorbis/Makefile.am b/love/src/jni/libvorbis-1.3.5/include/vorbis/Makefile.am
similarity index 100%
rename from jni/libvorbis-1.3.5/include/vorbis/Makefile.am
rename to love/src/jni/libvorbis-1.3.5/include/vorbis/Makefile.am
diff --git a/jni/libvorbis-1.3.5/include/vorbis/Makefile.in b/love/src/jni/libvorbis-1.3.5/include/vorbis/Makefile.in
similarity index 100%
rename from jni/libvorbis-1.3.5/include/vorbis/Makefile.in
rename to love/src/jni/libvorbis-1.3.5/include/vorbis/Makefile.in
diff --git a/jni/libvorbis-1.3.5/include/vorbis/codec.h b/love/src/jni/libvorbis-1.3.5/include/vorbis/codec.h
similarity index 100%
rename from jni/libvorbis-1.3.5/include/vorbis/codec.h
rename to love/src/jni/libvorbis-1.3.5/include/vorbis/codec.h
diff --git a/jni/libvorbis-1.3.5/include/vorbis/vorbisenc.h b/love/src/jni/libvorbis-1.3.5/include/vorbis/vorbisenc.h
similarity index 100%
rename from jni/libvorbis-1.3.5/include/vorbis/vorbisenc.h
rename to love/src/jni/libvorbis-1.3.5/include/vorbis/vorbisenc.h
diff --git a/jni/libvorbis-1.3.5/include/vorbis/vorbisfile.h b/love/src/jni/libvorbis-1.3.5/include/vorbis/vorbisfile.h
similarity index 100%
rename from jni/libvorbis-1.3.5/include/vorbis/vorbisfile.h
rename to love/src/jni/libvorbis-1.3.5/include/vorbis/vorbisfile.h
diff --git a/jni/libvorbis-1.3.5/install-sh b/love/src/jni/libvorbis-1.3.5/install-sh
similarity index 100%
rename from jni/libvorbis-1.3.5/install-sh
rename to love/src/jni/libvorbis-1.3.5/install-sh
diff --git a/jni/libvorbis-1.3.5/lib/Makefile.am b/love/src/jni/libvorbis-1.3.5/lib/Makefile.am
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/Makefile.am
rename to love/src/jni/libvorbis-1.3.5/lib/Makefile.am
diff --git a/jni/libvorbis-1.3.5/lib/Makefile.in b/love/src/jni/libvorbis-1.3.5/lib/Makefile.in
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/Makefile.in
rename to love/src/jni/libvorbis-1.3.5/lib/Makefile.in
diff --git a/jni/libvorbis-1.3.5/lib/analysis.c b/love/src/jni/libvorbis-1.3.5/lib/analysis.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/analysis.c
rename to love/src/jni/libvorbis-1.3.5/lib/analysis.c
diff --git a/jni/libvorbis-1.3.5/lib/backends.h b/love/src/jni/libvorbis-1.3.5/lib/backends.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/backends.h
rename to love/src/jni/libvorbis-1.3.5/lib/backends.h
diff --git a/jni/libvorbis-1.3.5/lib/barkmel.c b/love/src/jni/libvorbis-1.3.5/lib/barkmel.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/barkmel.c
rename to love/src/jni/libvorbis-1.3.5/lib/barkmel.c
diff --git a/jni/libvorbis-1.3.5/lib/bitrate.c b/love/src/jni/libvorbis-1.3.5/lib/bitrate.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/bitrate.c
rename to love/src/jni/libvorbis-1.3.5/lib/bitrate.c
diff --git a/jni/libvorbis-1.3.5/lib/bitrate.h b/love/src/jni/libvorbis-1.3.5/lib/bitrate.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/bitrate.h
rename to love/src/jni/libvorbis-1.3.5/lib/bitrate.h
diff --git a/jni/libvorbis-1.3.5/lib/block.c b/love/src/jni/libvorbis-1.3.5/lib/block.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/block.c
rename to love/src/jni/libvorbis-1.3.5/lib/block.c
diff --git a/jni/libvorbis-1.3.5/lib/books/Makefile.am b/love/src/jni/libvorbis-1.3.5/lib/books/Makefile.am
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/books/Makefile.am
rename to love/src/jni/libvorbis-1.3.5/lib/books/Makefile.am
diff --git a/jni/libvorbis-1.3.5/lib/books/Makefile.in b/love/src/jni/libvorbis-1.3.5/lib/books/Makefile.in
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/books/Makefile.in
rename to love/src/jni/libvorbis-1.3.5/lib/books/Makefile.in
diff --git a/jni/libvorbis-1.3.5/lib/books/coupled/Makefile.am b/love/src/jni/libvorbis-1.3.5/lib/books/coupled/Makefile.am
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/books/coupled/Makefile.am
rename to love/src/jni/libvorbis-1.3.5/lib/books/coupled/Makefile.am
diff --git a/jni/libvorbis-1.3.5/lib/books/coupled/Makefile.in b/love/src/jni/libvorbis-1.3.5/lib/books/coupled/Makefile.in
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/books/coupled/Makefile.in
rename to love/src/jni/libvorbis-1.3.5/lib/books/coupled/Makefile.in
diff --git a/jni/libvorbis-1.3.5/lib/books/coupled/res_books_51.h b/love/src/jni/libvorbis-1.3.5/lib/books/coupled/res_books_51.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/books/coupled/res_books_51.h
rename to love/src/jni/libvorbis-1.3.5/lib/books/coupled/res_books_51.h
diff --git a/jni/libvorbis-1.3.5/lib/books/coupled/res_books_stereo.h b/love/src/jni/libvorbis-1.3.5/lib/books/coupled/res_books_stereo.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/books/coupled/res_books_stereo.h
rename to love/src/jni/libvorbis-1.3.5/lib/books/coupled/res_books_stereo.h
diff --git a/jni/libvorbis-1.3.5/lib/books/floor/Makefile.am b/love/src/jni/libvorbis-1.3.5/lib/books/floor/Makefile.am
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/books/floor/Makefile.am
rename to love/src/jni/libvorbis-1.3.5/lib/books/floor/Makefile.am
diff --git a/jni/libvorbis-1.3.5/lib/books/floor/Makefile.in b/love/src/jni/libvorbis-1.3.5/lib/books/floor/Makefile.in
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/books/floor/Makefile.in
rename to love/src/jni/libvorbis-1.3.5/lib/books/floor/Makefile.in
diff --git a/jni/libvorbis-1.3.5/lib/books/floor/floor_books.h b/love/src/jni/libvorbis-1.3.5/lib/books/floor/floor_books.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/books/floor/floor_books.h
rename to love/src/jni/libvorbis-1.3.5/lib/books/floor/floor_books.h
diff --git a/jni/libvorbis-1.3.5/lib/books/uncoupled/Makefile.am b/love/src/jni/libvorbis-1.3.5/lib/books/uncoupled/Makefile.am
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/books/uncoupled/Makefile.am
rename to love/src/jni/libvorbis-1.3.5/lib/books/uncoupled/Makefile.am
diff --git a/jni/libvorbis-1.3.5/lib/books/uncoupled/Makefile.in b/love/src/jni/libvorbis-1.3.5/lib/books/uncoupled/Makefile.in
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/books/uncoupled/Makefile.in
rename to love/src/jni/libvorbis-1.3.5/lib/books/uncoupled/Makefile.in
diff --git a/jni/libvorbis-1.3.5/lib/books/uncoupled/res_books_uncoupled.h b/love/src/jni/libvorbis-1.3.5/lib/books/uncoupled/res_books_uncoupled.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/books/uncoupled/res_books_uncoupled.h
rename to love/src/jni/libvorbis-1.3.5/lib/books/uncoupled/res_books_uncoupled.h
diff --git a/jni/libvorbis-1.3.5/lib/codebook.c b/love/src/jni/libvorbis-1.3.5/lib/codebook.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/codebook.c
rename to love/src/jni/libvorbis-1.3.5/lib/codebook.c
diff --git a/jni/libvorbis-1.3.5/lib/codebook.h b/love/src/jni/libvorbis-1.3.5/lib/codebook.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/codebook.h
rename to love/src/jni/libvorbis-1.3.5/lib/codebook.h
diff --git a/jni/libvorbis-1.3.5/lib/codec_internal.h b/love/src/jni/libvorbis-1.3.5/lib/codec_internal.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/codec_internal.h
rename to love/src/jni/libvorbis-1.3.5/lib/codec_internal.h
diff --git a/jni/libvorbis-1.3.5/lib/envelope.c b/love/src/jni/libvorbis-1.3.5/lib/envelope.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/envelope.c
rename to love/src/jni/libvorbis-1.3.5/lib/envelope.c
diff --git a/jni/libvorbis-1.3.5/lib/envelope.h b/love/src/jni/libvorbis-1.3.5/lib/envelope.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/envelope.h
rename to love/src/jni/libvorbis-1.3.5/lib/envelope.h
diff --git a/jni/libvorbis-1.3.5/lib/floor0.c b/love/src/jni/libvorbis-1.3.5/lib/floor0.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/floor0.c
rename to love/src/jni/libvorbis-1.3.5/lib/floor0.c
diff --git a/jni/libvorbis-1.3.5/lib/floor1.c b/love/src/jni/libvorbis-1.3.5/lib/floor1.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/floor1.c
rename to love/src/jni/libvorbis-1.3.5/lib/floor1.c
diff --git a/jni/libvorbis-1.3.5/lib/highlevel.h b/love/src/jni/libvorbis-1.3.5/lib/highlevel.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/highlevel.h
rename to love/src/jni/libvorbis-1.3.5/lib/highlevel.h
diff --git a/jni/libvorbis-1.3.5/lib/info.c b/love/src/jni/libvorbis-1.3.5/lib/info.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/info.c
rename to love/src/jni/libvorbis-1.3.5/lib/info.c
diff --git a/jni/libvorbis-1.3.5/lib/lookup.c b/love/src/jni/libvorbis-1.3.5/lib/lookup.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/lookup.c
rename to love/src/jni/libvorbis-1.3.5/lib/lookup.c
diff --git a/jni/libvorbis-1.3.5/lib/lookup.h b/love/src/jni/libvorbis-1.3.5/lib/lookup.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/lookup.h
rename to love/src/jni/libvorbis-1.3.5/lib/lookup.h
diff --git a/jni/libvorbis-1.3.5/lib/lookup_data.h b/love/src/jni/libvorbis-1.3.5/lib/lookup_data.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/lookup_data.h
rename to love/src/jni/libvorbis-1.3.5/lib/lookup_data.h
diff --git a/jni/libvorbis-1.3.5/lib/lookups.pl b/love/src/jni/libvorbis-1.3.5/lib/lookups.pl
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/lookups.pl
rename to love/src/jni/libvorbis-1.3.5/lib/lookups.pl
diff --git a/jni/libvorbis-1.3.5/lib/lpc.c b/love/src/jni/libvorbis-1.3.5/lib/lpc.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/lpc.c
rename to love/src/jni/libvorbis-1.3.5/lib/lpc.c
diff --git a/jni/libvorbis-1.3.5/lib/lpc.h b/love/src/jni/libvorbis-1.3.5/lib/lpc.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/lpc.h
rename to love/src/jni/libvorbis-1.3.5/lib/lpc.h
diff --git a/jni/libvorbis-1.3.5/lib/lsp.c b/love/src/jni/libvorbis-1.3.5/lib/lsp.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/lsp.c
rename to love/src/jni/libvorbis-1.3.5/lib/lsp.c
diff --git a/jni/libvorbis-1.3.5/lib/lsp.h b/love/src/jni/libvorbis-1.3.5/lib/lsp.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/lsp.h
rename to love/src/jni/libvorbis-1.3.5/lib/lsp.h
diff --git a/jni/libvorbis-1.3.5/lib/mapping0.c b/love/src/jni/libvorbis-1.3.5/lib/mapping0.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/mapping0.c
rename to love/src/jni/libvorbis-1.3.5/lib/mapping0.c
diff --git a/jni/libvorbis-1.3.5/lib/masking.h b/love/src/jni/libvorbis-1.3.5/lib/masking.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/masking.h
rename to love/src/jni/libvorbis-1.3.5/lib/masking.h
diff --git a/jni/libvorbis-1.3.5/lib/mdct.c b/love/src/jni/libvorbis-1.3.5/lib/mdct.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/mdct.c
rename to love/src/jni/libvorbis-1.3.5/lib/mdct.c
diff --git a/jni/libvorbis-1.3.5/lib/mdct.h b/love/src/jni/libvorbis-1.3.5/lib/mdct.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/mdct.h
rename to love/src/jni/libvorbis-1.3.5/lib/mdct.h
diff --git a/jni/libvorbis-1.3.5/lib/misc.h b/love/src/jni/libvorbis-1.3.5/lib/misc.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/misc.h
rename to love/src/jni/libvorbis-1.3.5/lib/misc.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/Makefile.am b/love/src/jni/libvorbis-1.3.5/lib/modes/Makefile.am
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/Makefile.am
rename to love/src/jni/libvorbis-1.3.5/lib/modes/Makefile.am
diff --git a/jni/libvorbis-1.3.5/lib/modes/Makefile.in b/love/src/jni/libvorbis-1.3.5/lib/modes/Makefile.in
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/Makefile.in
rename to love/src/jni/libvorbis-1.3.5/lib/modes/Makefile.in
diff --git a/jni/libvorbis-1.3.5/lib/modes/floor_all.h b/love/src/jni/libvorbis-1.3.5/lib/modes/floor_all.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/floor_all.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/floor_all.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/psych_11.h b/love/src/jni/libvorbis-1.3.5/lib/modes/psych_11.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/psych_11.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/psych_11.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/psych_16.h b/love/src/jni/libvorbis-1.3.5/lib/modes/psych_16.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/psych_16.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/psych_16.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/psych_44.h b/love/src/jni/libvorbis-1.3.5/lib/modes/psych_44.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/psych_44.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/psych_44.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/psych_8.h b/love/src/jni/libvorbis-1.3.5/lib/modes/psych_8.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/psych_8.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/psych_8.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/residue_16.h b/love/src/jni/libvorbis-1.3.5/lib/modes/residue_16.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/residue_16.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/residue_16.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/residue_44.h b/love/src/jni/libvorbis-1.3.5/lib/modes/residue_44.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/residue_44.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/residue_44.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/residue_44p51.h b/love/src/jni/libvorbis-1.3.5/lib/modes/residue_44p51.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/residue_44p51.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/residue_44p51.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/residue_44u.h b/love/src/jni/libvorbis-1.3.5/lib/modes/residue_44u.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/residue_44u.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/residue_44u.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/residue_8.h b/love/src/jni/libvorbis-1.3.5/lib/modes/residue_8.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/residue_8.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/residue_8.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/setup_11.h b/love/src/jni/libvorbis-1.3.5/lib/modes/setup_11.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/setup_11.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/setup_11.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/setup_16.h b/love/src/jni/libvorbis-1.3.5/lib/modes/setup_16.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/setup_16.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/setup_16.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/setup_22.h b/love/src/jni/libvorbis-1.3.5/lib/modes/setup_22.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/setup_22.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/setup_22.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/setup_32.h b/love/src/jni/libvorbis-1.3.5/lib/modes/setup_32.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/setup_32.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/setup_32.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/setup_44.h b/love/src/jni/libvorbis-1.3.5/lib/modes/setup_44.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/setup_44.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/setup_44.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/setup_44p51.h b/love/src/jni/libvorbis-1.3.5/lib/modes/setup_44p51.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/setup_44p51.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/setup_44p51.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/setup_44u.h b/love/src/jni/libvorbis-1.3.5/lib/modes/setup_44u.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/setup_44u.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/setup_44u.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/setup_8.h b/love/src/jni/libvorbis-1.3.5/lib/modes/setup_8.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/setup_8.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/setup_8.h
diff --git a/jni/libvorbis-1.3.5/lib/modes/setup_X.h b/love/src/jni/libvorbis-1.3.5/lib/modes/setup_X.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/modes/setup_X.h
rename to love/src/jni/libvorbis-1.3.5/lib/modes/setup_X.h
diff --git a/jni/libvorbis-1.3.5/lib/os.h b/love/src/jni/libvorbis-1.3.5/lib/os.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/os.h
rename to love/src/jni/libvorbis-1.3.5/lib/os.h
diff --git a/jni/libvorbis-1.3.5/lib/psy.c b/love/src/jni/libvorbis-1.3.5/lib/psy.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/psy.c
rename to love/src/jni/libvorbis-1.3.5/lib/psy.c
diff --git a/jni/libvorbis-1.3.5/lib/psy.h b/love/src/jni/libvorbis-1.3.5/lib/psy.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/psy.h
rename to love/src/jni/libvorbis-1.3.5/lib/psy.h
diff --git a/jni/libvorbis-1.3.5/lib/psytune.c b/love/src/jni/libvorbis-1.3.5/lib/psytune.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/psytune.c
rename to love/src/jni/libvorbis-1.3.5/lib/psytune.c
diff --git a/jni/libvorbis-1.3.5/lib/registry.c b/love/src/jni/libvorbis-1.3.5/lib/registry.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/registry.c
rename to love/src/jni/libvorbis-1.3.5/lib/registry.c
diff --git a/jni/libvorbis-1.3.5/lib/registry.h b/love/src/jni/libvorbis-1.3.5/lib/registry.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/registry.h
rename to love/src/jni/libvorbis-1.3.5/lib/registry.h
diff --git a/jni/libvorbis-1.3.5/lib/res0.c b/love/src/jni/libvorbis-1.3.5/lib/res0.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/res0.c
rename to love/src/jni/libvorbis-1.3.5/lib/res0.c
diff --git a/jni/libvorbis-1.3.5/lib/scales.h b/love/src/jni/libvorbis-1.3.5/lib/scales.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/scales.h
rename to love/src/jni/libvorbis-1.3.5/lib/scales.h
diff --git a/jni/libvorbis-1.3.5/lib/sharedbook.c b/love/src/jni/libvorbis-1.3.5/lib/sharedbook.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/sharedbook.c
rename to love/src/jni/libvorbis-1.3.5/lib/sharedbook.c
diff --git a/jni/libvorbis-1.3.5/lib/smallft.c b/love/src/jni/libvorbis-1.3.5/lib/smallft.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/smallft.c
rename to love/src/jni/libvorbis-1.3.5/lib/smallft.c
diff --git a/jni/libvorbis-1.3.5/lib/smallft.h b/love/src/jni/libvorbis-1.3.5/lib/smallft.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/smallft.h
rename to love/src/jni/libvorbis-1.3.5/lib/smallft.h
diff --git a/jni/libvorbis-1.3.5/lib/synthesis.c b/love/src/jni/libvorbis-1.3.5/lib/synthesis.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/synthesis.c
rename to love/src/jni/libvorbis-1.3.5/lib/synthesis.c
diff --git a/jni/libvorbis-1.3.5/lib/tone.c b/love/src/jni/libvorbis-1.3.5/lib/tone.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/tone.c
rename to love/src/jni/libvorbis-1.3.5/lib/tone.c
diff --git a/jni/libvorbis-1.3.5/lib/vorbisenc.c b/love/src/jni/libvorbis-1.3.5/lib/vorbisenc.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/vorbisenc.c
rename to love/src/jni/libvorbis-1.3.5/lib/vorbisenc.c
diff --git a/jni/libvorbis-1.3.5/lib/vorbisfile.c b/love/src/jni/libvorbis-1.3.5/lib/vorbisfile.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/vorbisfile.c
rename to love/src/jni/libvorbis-1.3.5/lib/vorbisfile.c
diff --git a/jni/libvorbis-1.3.5/lib/window.c b/love/src/jni/libvorbis-1.3.5/lib/window.c
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/window.c
rename to love/src/jni/libvorbis-1.3.5/lib/window.c
diff --git a/jni/libvorbis-1.3.5/lib/window.h b/love/src/jni/libvorbis-1.3.5/lib/window.h
similarity index 100%
rename from jni/libvorbis-1.3.5/lib/window.h
rename to love/src/jni/libvorbis-1.3.5/lib/window.h
diff --git a/jni/libvorbis-1.3.5/libvorbis.spec b/love/src/jni/libvorbis-1.3.5/libvorbis.spec
similarity index 100%
rename from jni/libvorbis-1.3.5/libvorbis.spec
rename to love/src/jni/libvorbis-1.3.5/libvorbis.spec
diff --git a/jni/libvorbis-1.3.5/libvorbis.spec.in b/love/src/jni/libvorbis-1.3.5/libvorbis.spec.in
similarity index 100%
rename from jni/libvorbis-1.3.5/libvorbis.spec.in
rename to love/src/jni/libvorbis-1.3.5/libvorbis.spec.in
diff --git a/jni/libvorbis-1.3.5/m4/Makefile.am b/love/src/jni/libvorbis-1.3.5/m4/Makefile.am
similarity index 100%
rename from jni/libvorbis-1.3.5/m4/Makefile.am
rename to love/src/jni/libvorbis-1.3.5/m4/Makefile.am
diff --git a/jni/libvorbis-1.3.5/m4/Makefile.in b/love/src/jni/libvorbis-1.3.5/m4/Makefile.in
similarity index 100%
rename from jni/libvorbis-1.3.5/m4/Makefile.in
rename to love/src/jni/libvorbis-1.3.5/m4/Makefile.in
diff --git a/jni/libvorbis-1.3.5/m4/add_cflags.m4 b/love/src/jni/libvorbis-1.3.5/m4/add_cflags.m4
similarity index 100%
rename from jni/libvorbis-1.3.5/m4/add_cflags.m4
rename to love/src/jni/libvorbis-1.3.5/m4/add_cflags.m4
diff --git a/jni/libvorbis-1.3.5/m4/ogg.m4 b/love/src/jni/libvorbis-1.3.5/m4/ogg.m4
similarity index 100%
rename from jni/libvorbis-1.3.5/m4/ogg.m4
rename to love/src/jni/libvorbis-1.3.5/m4/ogg.m4
diff --git a/jni/libvorbis-1.3.5/m4/pkg.m4 b/love/src/jni/libvorbis-1.3.5/m4/pkg.m4
similarity index 100%
rename from jni/libvorbis-1.3.5/m4/pkg.m4
rename to love/src/jni/libvorbis-1.3.5/m4/pkg.m4
diff --git a/jni/libvorbis-1.3.5/macos/compat/strdup.c b/love/src/jni/libvorbis-1.3.5/macos/compat/strdup.c
similarity index 100%
rename from jni/libvorbis-1.3.5/macos/compat/strdup.c
rename to love/src/jni/libvorbis-1.3.5/macos/compat/strdup.c
diff --git a/jni/libvorbis-1.3.5/macos/compat/sys/types.h b/love/src/jni/libvorbis-1.3.5/macos/compat/sys/types.h
similarity index 100%
rename from jni/libvorbis-1.3.5/macos/compat/sys/types.h
rename to love/src/jni/libvorbis-1.3.5/macos/compat/sys/types.h
diff --git a/jni/libvorbis-1.3.5/macos/decoder_example.mcp b/love/src/jni/libvorbis-1.3.5/macos/decoder_example.mcp
similarity index 100%
rename from jni/libvorbis-1.3.5/macos/decoder_example.mcp
rename to love/src/jni/libvorbis-1.3.5/macos/decoder_example.mcp
diff --git a/jni/libvorbis-1.3.5/macos/encoder_example.mcp b/love/src/jni/libvorbis-1.3.5/macos/encoder_example.mcp
similarity index 100%
rename from jni/libvorbis-1.3.5/macos/encoder_example.mcp
rename to love/src/jni/libvorbis-1.3.5/macos/encoder_example.mcp
diff --git a/jni/libvorbis-1.3.5/macos/libvorbis.mcp b/love/src/jni/libvorbis-1.3.5/macos/libvorbis.mcp
similarity index 100%
rename from jni/libvorbis-1.3.5/macos/libvorbis.mcp
rename to love/src/jni/libvorbis-1.3.5/macos/libvorbis.mcp
diff --git a/jni/libvorbis-1.3.5/macos/libvorbis.mcp.exp b/love/src/jni/libvorbis-1.3.5/macos/libvorbis.mcp.exp
similarity index 100%
rename from jni/libvorbis-1.3.5/macos/libvorbis.mcp.exp
rename to love/src/jni/libvorbis-1.3.5/macos/libvorbis.mcp.exp
diff --git a/jni/libvorbis-1.3.5/macos/libvorbisenc.mcp b/love/src/jni/libvorbis-1.3.5/macos/libvorbisenc.mcp
similarity index 100%
rename from jni/libvorbis-1.3.5/macos/libvorbisenc.mcp
rename to love/src/jni/libvorbis-1.3.5/macos/libvorbisenc.mcp
diff --git a/jni/libvorbis-1.3.5/macos/libvorbisenc.mcp.exp b/love/src/jni/libvorbis-1.3.5/macos/libvorbisenc.mcp.exp
similarity index 100%
rename from jni/libvorbis-1.3.5/macos/libvorbisenc.mcp.exp
rename to love/src/jni/libvorbis-1.3.5/macos/libvorbisenc.mcp.exp
diff --git a/jni/libvorbis-1.3.5/macos/libvorbisfile.mcp b/love/src/jni/libvorbis-1.3.5/macos/libvorbisfile.mcp
similarity index 100%
rename from jni/libvorbis-1.3.5/macos/libvorbisfile.mcp
rename to love/src/jni/libvorbis-1.3.5/macos/libvorbisfile.mcp
diff --git a/jni/libvorbis-1.3.5/macos/libvorbisfile.mcp.exp b/love/src/jni/libvorbis-1.3.5/macos/libvorbisfile.mcp.exp
similarity index 100%
rename from jni/libvorbis-1.3.5/macos/libvorbisfile.mcp.exp
rename to love/src/jni/libvorbis-1.3.5/macos/libvorbisfile.mcp.exp
diff --git a/jni/libvorbis-1.3.5/macos/vorbis.mcp b/love/src/jni/libvorbis-1.3.5/macos/vorbis.mcp
similarity index 100%
rename from jni/libvorbis-1.3.5/macos/vorbis.mcp
rename to love/src/jni/libvorbis-1.3.5/macos/vorbis.mcp
diff --git a/jni/libvorbis-1.3.5/macosx/English.lproj/InfoPlist.strings b/love/src/jni/libvorbis-1.3.5/macosx/English.lproj/InfoPlist.strings
similarity index 100%
rename from jni/libvorbis-1.3.5/macosx/English.lproj/InfoPlist.strings
rename to love/src/jni/libvorbis-1.3.5/macosx/English.lproj/InfoPlist.strings
diff --git a/jni/libvorbis-1.3.5/macosx/Info.plist b/love/src/jni/libvorbis-1.3.5/macosx/Info.plist
similarity index 100%
rename from jni/libvorbis-1.3.5/macosx/Info.plist
rename to love/src/jni/libvorbis-1.3.5/macosx/Info.plist
diff --git a/jni/libvorbis-1.3.5/macosx/Vorbis.xcodeproj/project.pbxproj b/love/src/jni/libvorbis-1.3.5/macosx/Vorbis.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/libvorbis-1.3.5/macosx/Vorbis.xcodeproj/project.pbxproj
rename to love/src/jni/libvorbis-1.3.5/macosx/Vorbis.xcodeproj/project.pbxproj
diff --git a/jni/libvorbis-1.3.5/missing b/love/src/jni/libvorbis-1.3.5/missing
similarity index 100%
rename from jni/libvorbis-1.3.5/missing
rename to love/src/jni/libvorbis-1.3.5/missing
diff --git a/jni/libvorbis-1.3.5/symbian/bld.inf b/love/src/jni/libvorbis-1.3.5/symbian/bld.inf
similarity index 100%
rename from jni/libvorbis-1.3.5/symbian/bld.inf
rename to love/src/jni/libvorbis-1.3.5/symbian/bld.inf
diff --git a/jni/libvorbis-1.3.5/symbian/config.h b/love/src/jni/libvorbis-1.3.5/symbian/config.h
similarity index 100%
rename from jni/libvorbis-1.3.5/symbian/config.h
rename to love/src/jni/libvorbis-1.3.5/symbian/config.h
diff --git a/jni/libvorbis-1.3.5/symbian/vorbis.mmp b/love/src/jni/libvorbis-1.3.5/symbian/vorbis.mmp
similarity index 100%
rename from jni/libvorbis-1.3.5/symbian/vorbis.mmp
rename to love/src/jni/libvorbis-1.3.5/symbian/vorbis.mmp
diff --git a/jni/libvorbis-1.3.5/test/Makefile.am b/love/src/jni/libvorbis-1.3.5/test/Makefile.am
similarity index 100%
rename from jni/libvorbis-1.3.5/test/Makefile.am
rename to love/src/jni/libvorbis-1.3.5/test/Makefile.am
diff --git a/jni/libvorbis-1.3.5/test/Makefile.in b/love/src/jni/libvorbis-1.3.5/test/Makefile.in
similarity index 100%
rename from jni/libvorbis-1.3.5/test/Makefile.in
rename to love/src/jni/libvorbis-1.3.5/test/Makefile.in
diff --git a/jni/libvorbis-1.3.5/test/test.c b/love/src/jni/libvorbis-1.3.5/test/test.c
similarity index 100%
rename from jni/libvorbis-1.3.5/test/test.c
rename to love/src/jni/libvorbis-1.3.5/test/test.c
diff --git a/jni/libvorbis-1.3.5/test/util.c b/love/src/jni/libvorbis-1.3.5/test/util.c
similarity index 100%
rename from jni/libvorbis-1.3.5/test/util.c
rename to love/src/jni/libvorbis-1.3.5/test/util.c
diff --git a/jni/libvorbis-1.3.5/test/util.h b/love/src/jni/libvorbis-1.3.5/test/util.h
similarity index 100%
rename from jni/libvorbis-1.3.5/test/util.h
rename to love/src/jni/libvorbis-1.3.5/test/util.h
diff --git a/jni/libvorbis-1.3.5/test/write_read.c b/love/src/jni/libvorbis-1.3.5/test/write_read.c
similarity index 100%
rename from jni/libvorbis-1.3.5/test/write_read.c
rename to love/src/jni/libvorbis-1.3.5/test/write_read.c
diff --git a/jni/libvorbis-1.3.5/test/write_read.h b/love/src/jni/libvorbis-1.3.5/test/write_read.h
similarity index 100%
rename from jni/libvorbis-1.3.5/test/write_read.h
rename to love/src/jni/libvorbis-1.3.5/test/write_read.h
diff --git a/jni/libvorbis-1.3.5/todo.txt b/love/src/jni/libvorbis-1.3.5/todo.txt
similarity index 100%
rename from jni/libvorbis-1.3.5/todo.txt
rename to love/src/jni/libvorbis-1.3.5/todo.txt
diff --git a/jni/libvorbis-1.3.5/vorbis-uninstalled.pc.in b/love/src/jni/libvorbis-1.3.5/vorbis-uninstalled.pc.in
similarity index 100%
rename from jni/libvorbis-1.3.5/vorbis-uninstalled.pc.in
rename to love/src/jni/libvorbis-1.3.5/vorbis-uninstalled.pc.in
diff --git a/jni/libvorbis-1.3.5/vorbis.m4 b/love/src/jni/libvorbis-1.3.5/vorbis.m4
similarity index 100%
rename from jni/libvorbis-1.3.5/vorbis.m4
rename to love/src/jni/libvorbis-1.3.5/vorbis.m4
diff --git a/jni/libvorbis-1.3.5/vorbis.pc.in b/love/src/jni/libvorbis-1.3.5/vorbis.pc.in
similarity index 100%
rename from jni/libvorbis-1.3.5/vorbis.pc.in
rename to love/src/jni/libvorbis-1.3.5/vorbis.pc.in
diff --git a/jni/libvorbis-1.3.5/vorbisenc-uninstalled.pc.in b/love/src/jni/libvorbis-1.3.5/vorbisenc-uninstalled.pc.in
similarity index 100%
rename from jni/libvorbis-1.3.5/vorbisenc-uninstalled.pc.in
rename to love/src/jni/libvorbis-1.3.5/vorbisenc-uninstalled.pc.in
diff --git a/jni/libvorbis-1.3.5/vorbisenc.pc.in b/love/src/jni/libvorbis-1.3.5/vorbisenc.pc.in
similarity index 100%
rename from jni/libvorbis-1.3.5/vorbisenc.pc.in
rename to love/src/jni/libvorbis-1.3.5/vorbisenc.pc.in
diff --git a/jni/libvorbis-1.3.5/vorbisfile-uninstalled.pc.in b/love/src/jni/libvorbis-1.3.5/vorbisfile-uninstalled.pc.in
similarity index 100%
rename from jni/libvorbis-1.3.5/vorbisfile-uninstalled.pc.in
rename to love/src/jni/libvorbis-1.3.5/vorbisfile-uninstalled.pc.in
diff --git a/jni/libvorbis-1.3.5/vorbisfile.pc.in b/love/src/jni/libvorbis-1.3.5/vorbisfile.pc.in
similarity index 100%
rename from jni/libvorbis-1.3.5/vorbisfile.pc.in
rename to love/src/jni/libvorbis-1.3.5/vorbisfile.pc.in
diff --git a/jni/libvorbis-1.3.5/vq/16.vqs b/love/src/jni/libvorbis-1.3.5/vq/16.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/16.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/16.vqs
diff --git a/jni/libvorbis-1.3.5/vq/16u.vqs b/love/src/jni/libvorbis-1.3.5/vq/16u.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/16u.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/16u.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44c-1.vqs b/love/src/jni/libvorbis-1.3.5/vq/44c-1.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44c-1.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44c-1.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44c0.vqs b/love/src/jni/libvorbis-1.3.5/vq/44c0.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44c0.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44c0.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44c1.vqs b/love/src/jni/libvorbis-1.3.5/vq/44c1.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44c1.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44c1.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44c2.vqs b/love/src/jni/libvorbis-1.3.5/vq/44c2.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44c2.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44c2.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44c3.vqs b/love/src/jni/libvorbis-1.3.5/vq/44c3.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44c3.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44c3.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44c4.vqs b/love/src/jni/libvorbis-1.3.5/vq/44c4.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44c4.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44c4.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44c5.vqs b/love/src/jni/libvorbis-1.3.5/vq/44c5.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44c5.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44c5.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44c6.vqs b/love/src/jni/libvorbis-1.3.5/vq/44c6.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44c6.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44c6.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44c7.vqs b/love/src/jni/libvorbis-1.3.5/vq/44c7.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44c7.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44c7.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44c8.vqs b/love/src/jni/libvorbis-1.3.5/vq/44c8.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44c8.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44c8.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44c9.vqs b/love/src/jni/libvorbis-1.3.5/vq/44c9.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44c9.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44c9.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44p-1.vqs b/love/src/jni/libvorbis-1.3.5/vq/44p-1.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44p-1.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44p-1.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44p0.vqs b/love/src/jni/libvorbis-1.3.5/vq/44p0.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44p0.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44p0.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44p1.vqs b/love/src/jni/libvorbis-1.3.5/vq/44p1.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44p1.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44p1.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44p2.vqs b/love/src/jni/libvorbis-1.3.5/vq/44p2.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44p2.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44p2.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44p3.vqs b/love/src/jni/libvorbis-1.3.5/vq/44p3.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44p3.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44p3.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44p4.vqs b/love/src/jni/libvorbis-1.3.5/vq/44p4.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44p4.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44p4.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44p5.vqs b/love/src/jni/libvorbis-1.3.5/vq/44p5.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44p5.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44p5.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44p6.vqs b/love/src/jni/libvorbis-1.3.5/vq/44p6.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44p6.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44p6.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44p7.vqs b/love/src/jni/libvorbis-1.3.5/vq/44p7.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44p7.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44p7.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44p8.vqs b/love/src/jni/libvorbis-1.3.5/vq/44p8.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44p8.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44p8.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44p9.vqs b/love/src/jni/libvorbis-1.3.5/vq/44p9.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44p9.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44p9.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44u0.vqs b/love/src/jni/libvorbis-1.3.5/vq/44u0.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44u0.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44u0.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44u1.vqs b/love/src/jni/libvorbis-1.3.5/vq/44u1.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44u1.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44u1.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44u2.vqs b/love/src/jni/libvorbis-1.3.5/vq/44u2.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44u2.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44u2.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44u3.vqs b/love/src/jni/libvorbis-1.3.5/vq/44u3.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44u3.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44u3.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44u4.vqs b/love/src/jni/libvorbis-1.3.5/vq/44u4.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44u4.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44u4.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44u5.vqs b/love/src/jni/libvorbis-1.3.5/vq/44u5.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44u5.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44u5.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44u6.vqs b/love/src/jni/libvorbis-1.3.5/vq/44u6.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44u6.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44u6.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44u7.vqs b/love/src/jni/libvorbis-1.3.5/vq/44u7.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44u7.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44u7.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44u8.vqs b/love/src/jni/libvorbis-1.3.5/vq/44u8.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44u8.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44u8.vqs
diff --git a/jni/libvorbis-1.3.5/vq/44u9.vqs b/love/src/jni/libvorbis-1.3.5/vq/44u9.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/44u9.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/44u9.vqs
diff --git a/jni/libvorbis-1.3.5/vq/8.vqs b/love/src/jni/libvorbis-1.3.5/vq/8.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/8.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/8.vqs
diff --git a/jni/libvorbis-1.3.5/vq/8u.vqs b/love/src/jni/libvorbis-1.3.5/vq/8u.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/8u.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/8u.vqs
diff --git a/jni/libvorbis-1.3.5/vq/Makefile.am b/love/src/jni/libvorbis-1.3.5/vq/Makefile.am
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/Makefile.am
rename to love/src/jni/libvorbis-1.3.5/vq/Makefile.am
diff --git a/jni/libvorbis-1.3.5/vq/Makefile.in b/love/src/jni/libvorbis-1.3.5/vq/Makefile.in
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/Makefile.in
rename to love/src/jni/libvorbis-1.3.5/vq/Makefile.in
diff --git a/jni/libvorbis-1.3.5/vq/bookutil.c b/love/src/jni/libvorbis-1.3.5/vq/bookutil.c
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/bookutil.c
rename to love/src/jni/libvorbis-1.3.5/vq/bookutil.c
diff --git a/jni/libvorbis-1.3.5/vq/bookutil.h b/love/src/jni/libvorbis-1.3.5/vq/bookutil.h
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/bookutil.h
rename to love/src/jni/libvorbis-1.3.5/vq/bookutil.h
diff --git a/jni/libvorbis-1.3.5/vq/distribution.c b/love/src/jni/libvorbis-1.3.5/vq/distribution.c
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/distribution.c
rename to love/src/jni/libvorbis-1.3.5/vq/distribution.c
diff --git a/jni/libvorbis-1.3.5/vq/floor_11.vqs b/love/src/jni/libvorbis-1.3.5/vq/floor_11.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/floor_11.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/floor_11.vqs
diff --git a/jni/libvorbis-1.3.5/vq/floor_22.vqs b/love/src/jni/libvorbis-1.3.5/vq/floor_22.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/floor_22.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/floor_22.vqs
diff --git a/jni/libvorbis-1.3.5/vq/floor_44.vqs b/love/src/jni/libvorbis-1.3.5/vq/floor_44.vqs
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/floor_44.vqs
rename to love/src/jni/libvorbis-1.3.5/vq/floor_44.vqs
diff --git a/jni/libvorbis-1.3.5/vq/huffbuild.c b/love/src/jni/libvorbis-1.3.5/vq/huffbuild.c
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/huffbuild.c
rename to love/src/jni/libvorbis-1.3.5/vq/huffbuild.c
diff --git a/jni/libvorbis-1.3.5/vq/latticebuild.c b/love/src/jni/libvorbis-1.3.5/vq/latticebuild.c
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/latticebuild.c
rename to love/src/jni/libvorbis-1.3.5/vq/latticebuild.c
diff --git a/jni/libvorbis-1.3.5/vq/latticetune.c b/love/src/jni/libvorbis-1.3.5/vq/latticetune.c
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/latticetune.c
rename to love/src/jni/libvorbis-1.3.5/vq/latticetune.c
diff --git a/jni/libvorbis-1.3.5/vq/localcodebook.h b/love/src/jni/libvorbis-1.3.5/vq/localcodebook.h
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/localcodebook.h
rename to love/src/jni/libvorbis-1.3.5/vq/localcodebook.h
diff --git a/jni/libvorbis-1.3.5/vq/make_floor_books.pl b/love/src/jni/libvorbis-1.3.5/vq/make_floor_books.pl
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/make_floor_books.pl
rename to love/src/jni/libvorbis-1.3.5/vq/make_floor_books.pl
diff --git a/jni/libvorbis-1.3.5/vq/make_residue_books.pl b/love/src/jni/libvorbis-1.3.5/vq/make_residue_books.pl
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/make_residue_books.pl
rename to love/src/jni/libvorbis-1.3.5/vq/make_residue_books.pl
diff --git a/jni/libvorbis-1.3.5/vq/metrics.c b/love/src/jni/libvorbis-1.3.5/vq/metrics.c
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/metrics.c
rename to love/src/jni/libvorbis-1.3.5/vq/metrics.c
diff --git a/jni/libvorbis-1.3.5/vq/vqgen.c b/love/src/jni/libvorbis-1.3.5/vq/vqgen.c
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/vqgen.c
rename to love/src/jni/libvorbis-1.3.5/vq/vqgen.c
diff --git a/jni/libvorbis-1.3.5/vq/vqgen.h b/love/src/jni/libvorbis-1.3.5/vq/vqgen.h
similarity index 100%
rename from jni/libvorbis-1.3.5/vq/vqgen.h
rename to love/src/jni/libvorbis-1.3.5/vq/vqgen.h
diff --git a/jni/love/.hg_archival.txt b/love/src/jni/love/.hg_archival.txt
similarity index 100%
rename from jni/love/.hg_archival.txt
rename to love/src/jni/love/.hg_archival.txt
diff --git a/jni/love/.hgignore b/love/src/jni/love/.hgignore
similarity index 100%
rename from jni/love/.hgignore
rename to love/src/jni/love/.hgignore
diff --git a/jni/love/.hgtags b/love/src/jni/love/.hgtags
similarity index 100%
rename from jni/love/.hgtags
rename to love/src/jni/love/.hgtags
diff --git a/jni/love/Android.mk b/love/src/jni/love/Android.mk
similarity index 100%
rename from jni/love/Android.mk
rename to love/src/jni/love/Android.mk
diff --git a/jni/love/CMakeLists.txt b/love/src/jni/love/CMakeLists.txt
similarity index 100%
rename from jni/love/CMakeLists.txt
rename to love/src/jni/love/CMakeLists.txt
diff --git a/jni/love/bitbucket-pipelines.yml b/love/src/jni/love/bitbucket-pipelines.yml
similarity index 100%
rename from jni/love/bitbucket-pipelines.yml
rename to love/src/jni/love/bitbucket-pipelines.yml
diff --git a/jni/love/changes.txt b/love/src/jni/love/changes.txt
similarity index 100%
rename from jni/love/changes.txt
rename to love/src/jni/love/changes.txt
diff --git a/jni/love/extra/appveyor/appveyor.yml b/love/src/jni/love/extra/appveyor/appveyor.yml
similarity index 100%
rename from jni/love/extra/appveyor/appveyor.yml
rename to love/src/jni/love/extra/appveyor/appveyor.yml
diff --git a/jni/love/extra/cmake/FindLuaJIT.cmake b/love/src/jni/love/extra/cmake/FindLuaJIT.cmake
similarity index 100%
rename from jni/love/extra/cmake/FindLuaJIT.cmake
rename to love/src/jni/love/extra/cmake/FindLuaJIT.cmake
diff --git a/jni/love/extra/cmake/FindMPG123.cmake b/love/src/jni/love/extra/cmake/FindMPG123.cmake
similarity index 100%
rename from jni/love/extra/cmake/FindMPG123.cmake
rename to love/src/jni/love/extra/cmake/FindMPG123.cmake
diff --git a/jni/love/extra/cmake/FindModPlug.cmake b/love/src/jni/love/extra/cmake/FindModPlug.cmake
similarity index 100%
rename from jni/love/extra/cmake/FindModPlug.cmake
rename to love/src/jni/love/extra/cmake/FindModPlug.cmake
diff --git a/jni/love/extra/cmake/FindSDL2.cmake b/love/src/jni/love/extra/cmake/FindSDL2.cmake
similarity index 100%
rename from jni/love/extra/cmake/FindSDL2.cmake
rename to love/src/jni/love/extra/cmake/FindSDL2.cmake
diff --git a/jni/love/extra/cmake/FindTheora.cmake b/love/src/jni/love/extra/cmake/FindTheora.cmake
similarity index 100%
rename from jni/love/extra/cmake/FindTheora.cmake
rename to love/src/jni/love/extra/cmake/FindTheora.cmake
diff --git a/jni/love/extra/cmake/FindVorbis.cmake b/love/src/jni/love/extra/cmake/FindVorbis.cmake
similarity index 100%
rename from jni/love/extra/cmake/FindVorbis.cmake
rename to love/src/jni/love/extra/cmake/FindVorbis.cmake
diff --git a/jni/love/extra/nsis/game.ico b/love/src/jni/love/extra/nsis/game.ico
similarity index 100%
rename from jni/love/extra/nsis/game.ico
rename to love/src/jni/love/extra/nsis/game.ico
diff --git a/jni/love/extra/nsis/left.bmp b/love/src/jni/love/extra/nsis/left.bmp
similarity index 100%
rename from jni/love/extra/nsis/left.bmp
rename to love/src/jni/love/extra/nsis/left.bmp
diff --git a/jni/love/extra/nsis/love.ico b/love/src/jni/love/extra/nsis/love.ico
similarity index 100%
rename from jni/love/extra/nsis/love.ico
rename to love/src/jni/love/extra/nsis/love.ico
diff --git a/jni/love/extra/nsis/love.nsi b/love/src/jni/love/extra/nsis/love.nsi
similarity index 100%
rename from jni/love/extra/nsis/love.nsi
rename to love/src/jni/love/extra/nsis/love.nsi
diff --git a/jni/love/extra/nsis/top.bmp b/love/src/jni/love/extra/nsis/top.bmp
similarity index 100%
rename from jni/love/extra/nsis/top.bmp
rename to love/src/jni/love/extra/nsis/top.bmp
diff --git a/jni/love/extra/reshax/res/knoll1.png b/love/src/jni/love/extra/reshax/res/knoll1.png
similarity index 100%
rename from jni/love/extra/reshax/res/knoll1.png
rename to love/src/jni/love/extra/reshax/res/knoll1.png
diff --git a/jni/love/extra/reshax/res/planet.png b/love/src/jni/love/extra/reshax/res/planet.png
similarity index 100%
rename from jni/love/extra/reshax/res/planet.png
rename to love/src/jni/love/extra/reshax/res/planet.png
diff --git a/jni/love/extra/reshax/res/star1.png b/love/src/jni/love/extra/reshax/res/star1.png
similarity index 100%
rename from jni/love/extra/reshax/res/star1.png
rename to love/src/jni/love/extra/reshax/res/star1.png
diff --git a/jni/love/extra/resources/Vera.ttf b/love/src/jni/love/extra/resources/Vera.ttf
similarity index 100%
rename from jni/love/extra/resources/Vera.ttf
rename to love/src/jni/love/extra/resources/Vera.ttf
diff --git a/jni/love/extra/resources/b64.lua b/love/src/jni/love/extra/resources/b64.lua
similarity index 100%
rename from jni/love/extra/resources/b64.lua
rename to love/src/jni/love/extra/resources/b64.lua
diff --git a/jni/love/extra/resources/heart.png b/love/src/jni/love/extra/resources/heart.png
similarity index 100%
rename from jni/love/extra/resources/heart.png
rename to love/src/jni/love/extra/resources/heart.png
diff --git a/jni/love/extra/resources/pig.png b/love/src/jni/love/extra/resources/pig.png
similarity index 100%
rename from jni/love/extra/resources/pig.png
rename to love/src/jni/love/extra/resources/pig.png
diff --git a/jni/love/extra/windows/love.ico b/love/src/jni/love/extra/windows/love.ico
similarity index 100%
rename from jni/love/extra/windows/love.ico
rename to love/src/jni/love/extra/windows/love.ico
diff --git a/jni/love/extra/windows/love.rc b/love/src/jni/love/extra/windows/love.rc
similarity index 100%
rename from jni/love/extra/windows/love.rc
rename to love/src/jni/love/extra/windows/love.rc
diff --git a/jni/love/license.txt b/love/src/jni/love/license.txt
similarity index 100%
rename from jni/love/license.txt
rename to love/src/jni/love/license.txt
diff --git a/jni/love/platform/macosx/Info-Framework.plist b/love/src/jni/love/platform/macosx/Info-Framework.plist
similarity index 100%
rename from jni/love/platform/macosx/Info-Framework.plist
rename to love/src/jni/love/platform/macosx/Info-Framework.plist
diff --git a/jni/love/platform/macosx/OSX.h b/love/src/jni/love/platform/macosx/OSX.h
similarity index 100%
rename from jni/love/platform/macosx/OSX.h
rename to love/src/jni/love/platform/macosx/OSX.h
diff --git a/jni/love/platform/macosx/OSX.mm b/love/src/jni/love/platform/macosx/OSX.mm
similarity index 100%
rename from jni/love/platform/macosx/OSX.mm
rename to love/src/jni/love/platform/macosx/OSX.mm
diff --git a/jni/love/platform/macosx/dmg/DS_Store b/love/src/jni/love/platform/macosx/dmg/DS_Store
similarity index 100%
rename from jni/love/platform/macosx/dmg/DS_Store
rename to love/src/jni/love/platform/macosx/dmg/DS_Store
diff --git a/jni/love/platform/macosx/dmg/VolumeIcon.icns b/love/src/jni/love/platform/macosx/dmg/VolumeIcon.icns
similarity index 100%
rename from jni/love/platform/macosx/dmg/VolumeIcon.icns
rename to love/src/jni/love/platform/macosx/dmg/VolumeIcon.icns
diff --git a/jni/love/platform/macosx/dmg/backgroundImage.tiff b/love/src/jni/love/platform/macosx/dmg/backgroundImage.tiff
similarity index 100%
rename from jni/love/platform/macosx/dmg/backgroundImage.tiff
rename to love/src/jni/love/platform/macosx/dmg/backgroundImage.tiff
diff --git a/jni/love/platform/macosx/icons/Love.icns b/love/src/jni/love/platform/macosx/icons/Love.icns
similarity index 100%
rename from jni/love/platform/macosx/icons/Love.icns
rename to love/src/jni/love/platform/macosx/icons/Love.icns
diff --git a/jni/love/platform/macosx/icons/LoveDocument.icns b/love/src/jni/love/platform/macosx/icons/LoveDocument.icns
similarity index 100%
rename from jni/love/platform/macosx/icons/LoveDocument.icns
rename to love/src/jni/love/platform/macosx/icons/LoveDocument.icns
diff --git a/jni/love/platform/macosx/love-Info.plist b/love/src/jni/love/platform/macosx/love-Info.plist
similarity index 100%
rename from jni/love/platform/macosx/love-Info.plist
rename to love/src/jni/love/platform/macosx/love-Info.plist
diff --git a/jni/love/platform/macosx/love-framework.xcodeproj/project.pbxproj b/love/src/jni/love/platform/macosx/love-framework.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/love/platform/macosx/love-framework.xcodeproj/project.pbxproj
rename to love/src/jni/love/platform/macosx/love-framework.xcodeproj/project.pbxproj
diff --git a/jni/love/platform/macosx/love.xcodeproj/TemplateIcon.icns b/love/src/jni/love/platform/macosx/love.xcodeproj/TemplateIcon.icns
similarity index 100%
rename from jni/love/platform/macosx/love.xcodeproj/TemplateIcon.icns
rename to love/src/jni/love/platform/macosx/love.xcodeproj/TemplateIcon.icns
diff --git a/jni/love/platform/macosx/love.xcodeproj/default.pbxuser b/love/src/jni/love/platform/macosx/love.xcodeproj/default.pbxuser
similarity index 100%
rename from jni/love/platform/macosx/love.xcodeproj/default.pbxuser
rename to love/src/jni/love/platform/macosx/love.xcodeproj/default.pbxuser
diff --git a/jni/love/platform/macosx/love.xcodeproj/project.pbxproj b/love/src/jni/love/platform/macosx/love.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/love/platform/macosx/love.xcodeproj/project.pbxproj
rename to love/src/jni/love/platform/macosx/love.xcodeproj/project.pbxproj
diff --git a/jni/love/platform/msvc2010/liblove.vcxproj b/love/src/jni/love/platform/msvc2010/liblove.vcxproj
similarity index 100%
rename from jni/love/platform/msvc2010/liblove.vcxproj
rename to love/src/jni/love/platform/msvc2010/liblove.vcxproj
diff --git a/jni/love/platform/msvc2010/liblove.vcxproj.filters b/love/src/jni/love/platform/msvc2010/liblove.vcxproj.filters
similarity index 100%
rename from jni/love/platform/msvc2010/liblove.vcxproj.filters
rename to love/src/jni/love/platform/msvc2010/liblove.vcxproj.filters
diff --git a/jni/love/platform/msvc2010/love.ico b/love/src/jni/love/platform/msvc2010/love.ico
similarity index 100%
rename from jni/love/platform/msvc2010/love.ico
rename to love/src/jni/love/platform/msvc2010/love.ico
diff --git a/jni/love/platform/msvc2010/love.rc b/love/src/jni/love/platform/msvc2010/love.rc
similarity index 100%
rename from jni/love/platform/msvc2010/love.rc
rename to love/src/jni/love/platform/msvc2010/love.rc
diff --git a/jni/love/platform/msvc2010/love.sln b/love/src/jni/love/platform/msvc2010/love.sln
similarity index 100%
rename from jni/love/platform/msvc2010/love.sln
rename to love/src/jni/love/platform/msvc2010/love.sln
diff --git a/jni/love/platform/msvc2010/love.vcxproj b/love/src/jni/love/platform/msvc2010/love.vcxproj
similarity index 100%
rename from jni/love/platform/msvc2010/love.vcxproj
rename to love/src/jni/love/platform/msvc2010/love.vcxproj
diff --git a/jni/love/platform/msvc2010/love.vcxproj.filters b/love/src/jni/love/platform/msvc2010/love.vcxproj.filters
similarity index 100%
rename from jni/love/platform/msvc2010/love.vcxproj.filters
rename to love/src/jni/love/platform/msvc2010/love.vcxproj.filters
diff --git a/jni/love/platform/unix/Makefile.am b/love/src/jni/love/platform/unix/Makefile.am
similarity index 100%
rename from jni/love/platform/unix/Makefile.am
rename to love/src/jni/love/platform/unix/Makefile.am
diff --git a/jni/love/platform/unix/application-x-love-game.svg b/love/src/jni/love/platform/unix/application-x-love-game.svg
similarity index 100%
rename from jni/love/platform/unix/application-x-love-game.svg
rename to love/src/jni/love/platform/unix/application-x-love-game.svg
diff --git a/jni/love/platform/unix/automagic b/love/src/jni/love/platform/unix/automagic
similarity index 100%
rename from jni/love/platform/unix/automagic
rename to love/src/jni/love/platform/unix/automagic
diff --git a/jni/love/platform/unix/configure.ac b/love/src/jni/love/platform/unix/configure.ac
similarity index 100%
rename from jni/love/platform/unix/configure.ac
rename to love/src/jni/love/platform/unix/configure.ac
diff --git a/jni/love/platform/unix/cpp11.m4 b/love/src/jni/love/platform/unix/cpp11.m4
similarity index 100%
rename from jni/love/platform/unix/cpp11.m4
rename to love/src/jni/love/platform/unix/cpp11.m4
diff --git a/jni/love/platform/unix/debian/changelog b/love/src/jni/love/platform/unix/debian/changelog
similarity index 100%
rename from jni/love/platform/unix/debian/changelog
rename to love/src/jni/love/platform/unix/debian/changelog
diff --git a/jni/love/platform/unix/debian/changelog.in b/love/src/jni/love/platform/unix/debian/changelog.in
similarity index 100%
rename from jni/love/platform/unix/debian/changelog.in
rename to love/src/jni/love/platform/unix/debian/changelog.in
diff --git a/jni/love/platform/unix/debian/compat b/love/src/jni/love/platform/unix/debian/compat
similarity index 100%
rename from jni/love/platform/unix/debian/compat
rename to love/src/jni/love/platform/unix/debian/compat
diff --git a/jni/love/platform/unix/debian/control b/love/src/jni/love/platform/unix/debian/control
similarity index 100%
rename from jni/love/platform/unix/debian/control
rename to love/src/jni/love/platform/unix/debian/control
diff --git a/jni/love/platform/unix/debian/control.in b/love/src/jni/love/platform/unix/debian/control.in
similarity index 100%
rename from jni/love/platform/unix/debian/control.in
rename to love/src/jni/love/platform/unix/debian/control.in
diff --git a/jni/love/platform/unix/debian/copyright b/love/src/jni/love/platform/unix/debian/copyright
similarity index 100%
rename from jni/love/platform/unix/debian/copyright
rename to love/src/jni/love/platform/unix/debian/copyright
diff --git a/jni/love/platform/unix/debian/docs b/love/src/jni/love/platform/unix/debian/docs
similarity index 100%
rename from jni/love/platform/unix/debian/docs
rename to love/src/jni/love/platform/unix/debian/docs
diff --git a/jni/love/platform/unix/debian/liblove-unstable.install b/love/src/jni/love/platform/unix/debian/liblove-unstable.install
similarity index 100%
rename from jni/love/platform/unix/debian/liblove-unstable.install
rename to love/src/jni/love/platform/unix/debian/liblove-unstable.install
diff --git a/jni/love/platform/unix/debian/liblove-unstable0.docs b/love/src/jni/love/platform/unix/debian/liblove-unstable0.docs
similarity index 100%
rename from jni/love/platform/unix/debian/liblove-unstable0.docs
rename to love/src/jni/love/platform/unix/debian/liblove-unstable0.docs
diff --git a/jni/love/platform/unix/debian/liblove-unstable0.install b/love/src/jni/love/platform/unix/debian/liblove-unstable0.install
similarity index 100%
rename from jni/love/platform/unix/debian/liblove-unstable0.install
rename to love/src/jni/love/platform/unix/debian/liblove-unstable0.install
diff --git a/jni/love/platform/unix/debian/liblove.install b/love/src/jni/love/platform/unix/debian/liblove.install
similarity index 100%
rename from jni/love/platform/unix/debian/liblove.install
rename to love/src/jni/love/platform/unix/debian/liblove.install
diff --git a/jni/love/platform/unix/debian/liblove0.docs b/love/src/jni/love/platform/unix/debian/liblove0.docs
similarity index 100%
rename from jni/love/platform/unix/debian/liblove0.docs
rename to love/src/jni/love/platform/unix/debian/liblove0.docs
diff --git a/jni/love/platform/unix/debian/liblove0.install b/love/src/jni/love/platform/unix/debian/liblove0.install
similarity index 100%
rename from jni/love/platform/unix/debian/liblove0.install
rename to love/src/jni/love/platform/unix/debian/liblove0.install
diff --git a/jni/love/platform/unix/debian/love-unstable.install b/love/src/jni/love/platform/unix/debian/love-unstable.install
similarity index 100%
rename from jni/love/platform/unix/debian/love-unstable.install
rename to love/src/jni/love/platform/unix/debian/love-unstable.install
diff --git a/jni/love/platform/unix/debian/love-unstable.manpages b/love/src/jni/love/platform/unix/debian/love-unstable.manpages
similarity index 100%
rename from jni/love/platform/unix/debian/love-unstable.manpages
rename to love/src/jni/love/platform/unix/debian/love-unstable.manpages
diff --git a/jni/love/platform/unix/debian/love.install b/love/src/jni/love/platform/unix/debian/love.install
similarity index 100%
rename from jni/love/platform/unix/debian/love.install
rename to love/src/jni/love/platform/unix/debian/love.install
diff --git a/jni/love/platform/unix/debian/love.manpages b/love/src/jni/love/platform/unix/debian/love.manpages
similarity index 100%
rename from jni/love/platform/unix/debian/love.manpages
rename to love/src/jni/love/platform/unix/debian/love.manpages
diff --git a/jni/love/platform/unix/debian/rules b/love/src/jni/love/platform/unix/debian/rules
similarity index 100%
rename from jni/love/platform/unix/debian/rules
rename to love/src/jni/love/platform/unix/debian/rules
diff --git a/jni/love/platform/unix/debian/rules.in b/love/src/jni/love/platform/unix/debian/rules.in
similarity index 100%
rename from jni/love/platform/unix/debian/rules.in
rename to love/src/jni/love/platform/unix/debian/rules.in
diff --git a/jni/love/platform/unix/debian/source/format b/love/src/jni/love/platform/unix/debian/source/format
similarity index 100%
rename from jni/love/platform/unix/debian/source/format
rename to love/src/jni/love/platform/unix/debian/source/format
diff --git a/jni/love/platform/unix/exclude b/love/src/jni/love/platform/unix/exclude
similarity index 100%
rename from jni/love/platform/unix/exclude
rename to love/src/jni/love/platform/unix/exclude
diff --git a/jni/love/platform/unix/gen-makefile b/love/src/jni/love/platform/unix/gen-makefile
similarity index 100%
rename from jni/love/platform/unix/gen-makefile
rename to love/src/jni/love/platform/unix/gen-makefile
diff --git a/jni/love/platform/unix/genmodules b/love/src/jni/love/platform/unix/genmodules
similarity index 100%
rename from jni/love/platform/unix/genmodules
rename to love/src/jni/love/platform/unix/genmodules
diff --git a/jni/love/platform/unix/love.1 b/love/src/jni/love/platform/unix/love.1
similarity index 100%
rename from jni/love/platform/unix/love.1
rename to love/src/jni/love/platform/unix/love.1
diff --git a/jni/love/platform/unix/love.6 b/love/src/jni/love/platform/unix/love.6
similarity index 100%
rename from jni/love/platform/unix/love.6
rename to love/src/jni/love/platform/unix/love.6
diff --git a/jni/love/platform/unix/love.desktop.in b/love/src/jni/love/platform/unix/love.desktop.in
similarity index 100%
rename from jni/love/platform/unix/love.desktop.in
rename to love/src/jni/love/platform/unix/love.desktop.in
diff --git a/jni/love/platform/unix/love.svg b/love/src/jni/love/platform/unix/love.svg
similarity index 100%
rename from jni/love/platform/unix/love.svg
rename to love/src/jni/love/platform/unix/love.svg
diff --git a/jni/love/platform/unix/love.xml b/love/src/jni/love/platform/unix/love.xml
similarity index 100%
rename from jni/love/platform/unix/love.xml
rename to love/src/jni/love/platform/unix/love.xml
diff --git a/jni/love/platform/unix/postinst b/love/src/jni/love/platform/unix/postinst
similarity index 100%
rename from jni/love/platform/unix/postinst
rename to love/src/jni/love/platform/unix/postinst
diff --git a/jni/love/platform/unix/postrm b/love/src/jni/love/platform/unix/postrm
similarity index 100%
rename from jni/love/platform/unix/postrm
rename to love/src/jni/love/platform/unix/postrm
diff --git a/jni/love/platform/xcode/Images.xcassets/Contents.json b/love/src/jni/love/platform/xcode/Images.xcassets/Contents.json
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/Contents.json
rename to love/src/jni/love/platform/xcode/Images.xcassets/Contents.json
diff --git a/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_128x128.png b/love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_128x128.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_128x128.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_128x128.png
diff --git a/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_128x128@2x.png b/love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_128x128@2x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_128x128@2x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_128x128@2x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_16x16.png b/love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_16x16.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_16x16.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_16x16.png
diff --git a/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_16x16@2x.png b/love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_16x16@2x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_16x16@2x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_16x16@2x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_256x256.png b/love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_256x256.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_256x256.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_256x256.png
diff --git a/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_256x256@2x.png b/love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_256x256@2x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_256x256@2x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_256x256@2x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_32x32.png b/love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_32x32.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_32x32.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_32x32.png
diff --git a/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_32x32@2x.png b/love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_32x32@2x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_32x32@2x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_32x32@2x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_512x512.png b/love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_512x512.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_512x512.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_512x512.png
diff --git a/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_512x512@2x.png b/love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_512x512@2x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_512x512@2x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/GameIcon.iconset/icon_512x512@2x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/1024.png b/love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/1024.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/1024.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/1024.png
diff --git a/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/128.png b/love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/128.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/128.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/128.png
diff --git a/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/16.png b/love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/16.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/16.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/16.png
diff --git a/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/256.png b/love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/256.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/256.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/256.png
diff --git a/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/32.png b/love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/32.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/32.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/32.png
diff --git a/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/512.png b/love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/512.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/512.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/512.png
diff --git a/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/64.png b/love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/64.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/64.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/64.png
diff --git a/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/Contents.json b/love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/Contents.json
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/Contents.json
rename to love/src/jni/love/platform/xcode/Images.xcassets/OS X AppIcon.appiconset/Contents.json
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/Contents.json b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/Contents.json
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/Contents.json
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/Contents.json
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-29pt@1x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-29pt@1x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-29pt@1x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-29pt@1x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-29pt@2x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-29pt@2x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-29pt@2x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-29pt@2x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-29pt@3x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-29pt@3x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-29pt@3x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-29pt@3x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-40pt@1x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-40pt@1x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-40pt@1x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-40pt@1x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-40pt@2x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-40pt@2x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-40pt@2x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-40pt@2x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-40pt@3x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-40pt@3x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-40pt@3x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-40pt@3x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-50pt@1x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-50pt@1x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-50pt@1x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-50pt@1x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-50pt@2x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-50pt@2x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-50pt@2x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-50pt@2x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-57pt@1x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-57pt@1x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-57pt@1x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-57pt@1x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-57pt@2x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-57pt@2x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-57pt@2x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-57pt@2x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-60pt@2x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-60pt@2x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-60pt@2x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-60pt@2x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-60pt@3x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-60pt@3x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-60pt@3x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-60pt@3x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-72pt@1x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-72pt@1x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-72pt@1x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-72pt@1x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-72pt@2x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-72pt@2x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-72pt@2x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-72pt@2x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-76pt@1x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-76pt@1x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-76pt@1x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-76pt@1x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-76pt@2x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-76pt@2x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-76pt@2x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-76pt@2x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-83.5pt@2x.png b/love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-83.5pt@2x.png
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-83.5pt@2x.png
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS AppIcon.appiconset/icon-83.5pt@2x.png
diff --git a/jni/love/platform/xcode/Images.xcassets/iOS LaunchImage.launchimage/Contents.json b/love/src/jni/love/platform/xcode/Images.xcassets/iOS LaunchImage.launchimage/Contents.json
similarity index 100%
rename from jni/love/platform/xcode/Images.xcassets/iOS LaunchImage.launchimage/Contents.json
rename to love/src/jni/love/platform/xcode/Images.xcassets/iOS LaunchImage.launchimage/Contents.json
diff --git a/jni/love/platform/xcode/ios/Launch Screen.xib b/love/src/jni/love/platform/xcode/ios/Launch Screen.xib
similarity index 100%
rename from jni/love/platform/xcode/ios/Launch Screen.xib
rename to love/src/jni/love/platform/xcode/ios/Launch Screen.xib
diff --git a/jni/love/platform/xcode/ios/love-ios.plist b/love/src/jni/love/platform/xcode/ios/love-ios.plist
similarity index 100%
rename from jni/love/platform/xcode/ios/love-ios.plist
rename to love/src/jni/love/platform/xcode/ios/love-ios.plist
diff --git a/jni/love/platform/xcode/ios/lovedocument.icns b/love/src/jni/love/platform/xcode/ios/lovedocument.icns
similarity index 100%
rename from jni/love/platform/xcode/ios/lovedocument.icns
rename to love/src/jni/love/platform/xcode/ios/lovedocument.icns
diff --git a/jni/love/platform/xcode/ios/luajit-iOS.sh b/love/src/jni/love/platform/xcode/ios/luajit-iOS.sh
similarity index 100%
rename from jni/love/platform/xcode/ios/luajit-iOS.sh
rename to love/src/jni/love/platform/xcode/ios/luajit-iOS.sh
diff --git a/jni/love/platform/xcode/liblove.xcodeproj/project.pbxproj b/love/src/jni/love/platform/xcode/liblove.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/love/platform/xcode/liblove.xcodeproj/project.pbxproj
rename to love/src/jni/love/platform/xcode/liblove.xcodeproj/project.pbxproj
diff --git a/jni/love/platform/xcode/liblove.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/love/src/jni/love/platform/xcode/liblove.xcodeproj/project.xcworkspace/contents.xcworkspacedata
similarity index 100%
rename from jni/love/platform/xcode/liblove.xcodeproj/project.xcworkspace/contents.xcworkspacedata
rename to love/src/jni/love/platform/xcode/liblove.xcodeproj/project.xcworkspace/contents.xcworkspacedata
diff --git a/jni/love/platform/xcode/love.xcodeproj/TemplateIcon.icns b/love/src/jni/love/platform/xcode/love.xcodeproj/TemplateIcon.icns
similarity index 100%
rename from jni/love/platform/xcode/love.xcodeproj/TemplateIcon.icns
rename to love/src/jni/love/platform/xcode/love.xcodeproj/TemplateIcon.icns
diff --git a/jni/love/platform/xcode/love.xcodeproj/default.pbxuser b/love/src/jni/love/platform/xcode/love.xcodeproj/default.pbxuser
similarity index 100%
rename from jni/love/platform/xcode/love.xcodeproj/default.pbxuser
rename to love/src/jni/love/platform/xcode/love.xcodeproj/default.pbxuser
diff --git a/jni/love/platform/xcode/love.xcodeproj/project.pbxproj b/love/src/jni/love/platform/xcode/love.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/love/platform/xcode/love.xcodeproj/project.pbxproj
rename to love/src/jni/love/platform/xcode/love.xcodeproj/project.pbxproj
diff --git a/jni/love/platform/xcode/love.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/love/src/jni/love/platform/xcode/love.xcodeproj/project.xcworkspace/contents.xcworkspacedata
similarity index 100%
rename from jni/love/platform/xcode/love.xcodeproj/project.xcworkspace/contents.xcworkspacedata
rename to love/src/jni/love/platform/xcode/love.xcodeproj/project.xcworkspace/contents.xcworkspacedata
diff --git a/jni/love/platform/xcode/macosx/liblove-macosx.plist b/love/src/jni/love/platform/xcode/macosx/liblove-macosx.plist
similarity index 100%
rename from jni/love/platform/xcode/macosx/liblove-macosx.plist
rename to love/src/jni/love/platform/xcode/macosx/liblove-macosx.plist
diff --git a/jni/love/platform/xcode/macosx/love-macosx.plist b/love/src/jni/love/platform/xcode/macosx/love-macosx.plist
similarity index 100%
rename from jni/love/platform/xcode/macosx/love-macosx.plist
rename to love/src/jni/love/platform/xcode/macosx/love-macosx.plist
diff --git a/jni/love/readme-iOS.rtf b/love/src/jni/love/readme-iOS.rtf
similarity index 100%
rename from jni/love/readme-iOS.rtf
rename to love/src/jni/love/readme-iOS.rtf
diff --git a/jni/love/readme.md b/love/src/jni/love/readme.md
similarity index 100%
rename from jni/love/readme.md
rename to love/src/jni/love/readme.md
diff --git a/jni/love/src/common/Data.h b/love/src/jni/love/src/common/Data.h
similarity index 100%
rename from jni/love/src/common/Data.h
rename to love/src/jni/love/src/common/Data.h
diff --git a/jni/love/src/common/EnumMap.h b/love/src/jni/love/src/common/EnumMap.h
similarity index 100%
rename from jni/love/src/common/EnumMap.h
rename to love/src/jni/love/src/common/EnumMap.h
diff --git a/jni/love/src/common/Exception.cpp b/love/src/jni/love/src/common/Exception.cpp
similarity index 100%
rename from jni/love/src/common/Exception.cpp
rename to love/src/jni/love/src/common/Exception.cpp
diff --git a/jni/love/src/common/Exception.h b/love/src/jni/love/src/common/Exception.h
similarity index 100%
rename from jni/love/src/common/Exception.h
rename to love/src/jni/love/src/common/Exception.h
diff --git a/jni/love/src/common/Matrix.cpp b/love/src/jni/love/src/common/Matrix.cpp
similarity index 100%
rename from jni/love/src/common/Matrix.cpp
rename to love/src/jni/love/src/common/Matrix.cpp
diff --git a/jni/love/src/common/Matrix.h b/love/src/jni/love/src/common/Matrix.h
similarity index 100%
rename from jni/love/src/common/Matrix.h
rename to love/src/jni/love/src/common/Matrix.h
diff --git a/jni/love/src/common/Memoizer.cpp b/love/src/jni/love/src/common/Memoizer.cpp
similarity index 100%
rename from jni/love/src/common/Memoizer.cpp
rename to love/src/jni/love/src/common/Memoizer.cpp
diff --git a/jni/love/src/common/Memoizer.h b/love/src/jni/love/src/common/Memoizer.h
similarity index 100%
rename from jni/love/src/common/Memoizer.h
rename to love/src/jni/love/src/common/Memoizer.h
diff --git a/jni/love/src/common/Module.cpp b/love/src/jni/love/src/common/Module.cpp
similarity index 100%
rename from jni/love/src/common/Module.cpp
rename to love/src/jni/love/src/common/Module.cpp
diff --git a/jni/love/src/common/Module.h b/love/src/jni/love/src/common/Module.h
similarity index 100%
rename from jni/love/src/common/Module.h
rename to love/src/jni/love/src/common/Module.h
diff --git a/jni/love/src/common/Object.cpp b/love/src/jni/love/src/common/Object.cpp
similarity index 100%
rename from jni/love/src/common/Object.cpp
rename to love/src/jni/love/src/common/Object.cpp
diff --git a/jni/love/src/common/Object.h b/love/src/jni/love/src/common/Object.h
similarity index 100%
rename from jni/love/src/common/Object.h
rename to love/src/jni/love/src/common/Object.h
diff --git a/jni/love/src/common/Reference.cpp b/love/src/jni/love/src/common/Reference.cpp
similarity index 100%
rename from jni/love/src/common/Reference.cpp
rename to love/src/jni/love/src/common/Reference.cpp
diff --git a/jni/love/src/common/Reference.h b/love/src/jni/love/src/common/Reference.h
similarity index 100%
rename from jni/love/src/common/Reference.h
rename to love/src/jni/love/src/common/Reference.h
diff --git a/jni/love/src/common/Stream.h b/love/src/jni/love/src/common/Stream.h
similarity index 100%
rename from jni/love/src/common/Stream.h
rename to love/src/jni/love/src/common/Stream.h
diff --git a/jni/love/src/common/StringMap.h b/love/src/jni/love/src/common/StringMap.h
similarity index 100%
rename from jni/love/src/common/StringMap.h
rename to love/src/jni/love/src/common/StringMap.h
diff --git a/jni/love/src/common/Variant.cpp b/love/src/jni/love/src/common/Variant.cpp
similarity index 100%
rename from jni/love/src/common/Variant.cpp
rename to love/src/jni/love/src/common/Variant.cpp
diff --git a/jni/love/src/common/Variant.h b/love/src/jni/love/src/common/Variant.h
similarity index 100%
rename from jni/love/src/common/Variant.h
rename to love/src/jni/love/src/common/Variant.h
diff --git a/jni/love/src/common/Vector.cpp b/love/src/jni/love/src/common/Vector.cpp
similarity index 100%
rename from jni/love/src/common/Vector.cpp
rename to love/src/jni/love/src/common/Vector.cpp
diff --git a/jni/love/src/common/Vector.h b/love/src/jni/love/src/common/Vector.h
similarity index 100%
rename from jni/love/src/common/Vector.h
rename to love/src/jni/love/src/common/Vector.h
diff --git a/jni/love/src/common/android.cpp b/love/src/jni/love/src/common/android.cpp
similarity index 100%
rename from jni/love/src/common/android.cpp
rename to love/src/jni/love/src/common/android.cpp
diff --git a/jni/love/src/common/android.h b/love/src/jni/love/src/common/android.h
similarity index 100%
rename from jni/love/src/common/android.h
rename to love/src/jni/love/src/common/android.h
diff --git a/jni/love/src/common/b64.cpp b/love/src/jni/love/src/common/b64.cpp
similarity index 100%
rename from jni/love/src/common/b64.cpp
rename to love/src/jni/love/src/common/b64.cpp
diff --git a/jni/love/src/common/b64.h b/love/src/jni/love/src/common/b64.h
similarity index 100%
rename from jni/love/src/common/b64.h
rename to love/src/jni/love/src/common/b64.h
diff --git a/jni/love/src/common/config.h b/love/src/jni/love/src/common/config.h
similarity index 100%
rename from jni/love/src/common/config.h
rename to love/src/jni/love/src/common/config.h
diff --git a/jni/love/src/common/delay.cpp b/love/src/jni/love/src/common/delay.cpp
similarity index 100%
rename from jni/love/src/common/delay.cpp
rename to love/src/jni/love/src/common/delay.cpp
diff --git a/jni/love/src/common/delay.h b/love/src/jni/love/src/common/delay.h
similarity index 100%
rename from jni/love/src/common/delay.h
rename to love/src/jni/love/src/common/delay.h
diff --git a/jni/love/src/common/int.h b/love/src/jni/love/src/common/int.h
similarity index 100%
rename from jni/love/src/common/int.h
rename to love/src/jni/love/src/common/int.h
diff --git a/jni/love/src/common/ios.h b/love/src/jni/love/src/common/ios.h
similarity index 100%
rename from jni/love/src/common/ios.h
rename to love/src/jni/love/src/common/ios.h
diff --git a/jni/love/src/common/ios.mm b/love/src/jni/love/src/common/ios.mm
similarity index 100%
rename from jni/love/src/common/ios.mm
rename to love/src/jni/love/src/common/ios.mm
diff --git a/jni/love/src/common/macosx.h b/love/src/jni/love/src/common/macosx.h
similarity index 100%
rename from jni/love/src/common/macosx.h
rename to love/src/jni/love/src/common/macosx.h
diff --git a/jni/love/src/common/macosx.mm b/love/src/jni/love/src/common/macosx.mm
similarity index 100%
rename from jni/love/src/common/macosx.mm
rename to love/src/jni/love/src/common/macosx.mm
diff --git a/jni/love/src/common/math.h b/love/src/jni/love/src/common/math.h
similarity index 100%
rename from jni/love/src/common/math.h
rename to love/src/jni/love/src/common/math.h
diff --git a/jni/love/src/common/runtime.cpp b/love/src/jni/love/src/common/runtime.cpp
similarity index 100%
rename from jni/love/src/common/runtime.cpp
rename to love/src/jni/love/src/common/runtime.cpp
diff --git a/jni/love/src/common/runtime.h b/love/src/jni/love/src/common/runtime.h
similarity index 100%
rename from jni/love/src/common/runtime.h
rename to love/src/jni/love/src/common/runtime.h
diff --git a/jni/love/src/common/types.cpp b/love/src/jni/love/src/common/types.cpp
similarity index 100%
rename from jni/love/src/common/types.cpp
rename to love/src/jni/love/src/common/types.cpp
diff --git a/jni/love/src/common/types.h b/love/src/jni/love/src/common/types.h
similarity index 100%
rename from jni/love/src/common/types.h
rename to love/src/jni/love/src/common/types.h
diff --git a/jni/love/src/common/utf8.cpp b/love/src/jni/love/src/common/utf8.cpp
similarity index 100%
rename from jni/love/src/common/utf8.cpp
rename to love/src/jni/love/src/common/utf8.cpp
diff --git a/jni/love/src/common/utf8.h b/love/src/jni/love/src/common/utf8.h
similarity index 100%
rename from jni/love/src/common/utf8.h
rename to love/src/jni/love/src/common/utf8.h
diff --git a/jni/love/src/common/version.h b/love/src/jni/love/src/common/version.h
similarity index 100%
rename from jni/love/src/common/version.h
rename to love/src/jni/love/src/common/version.h
diff --git a/jni/love/src/common/wrap_Data.cpp b/love/src/jni/love/src/common/wrap_Data.cpp
similarity index 100%
rename from jni/love/src/common/wrap_Data.cpp
rename to love/src/jni/love/src/common/wrap_Data.cpp
diff --git a/jni/love/src/common/wrap_Data.h b/love/src/jni/love/src/common/wrap_Data.h
similarity index 100%
rename from jni/love/src/common/wrap_Data.h
rename to love/src/jni/love/src/common/wrap_Data.h
diff --git a/jni/love/src/libraries/Box2D/Box2D.h b/love/src/jni/love/src/libraries/Box2D/Box2D.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Box2D.h
rename to love/src/jni/love/src/libraries/Box2D/Box2D.h
diff --git a/jni/love/src/libraries/Box2D/Collision/Shapes/b2ChainShape.cpp b/love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2ChainShape.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/Shapes/b2ChainShape.cpp
rename to love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2ChainShape.cpp
diff --git a/jni/love/src/libraries/Box2D/Collision/Shapes/b2ChainShape.h b/love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2ChainShape.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/Shapes/b2ChainShape.h
rename to love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2ChainShape.h
diff --git a/jni/love/src/libraries/Box2D/Collision/Shapes/b2CircleShape.cpp b/love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2CircleShape.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/Shapes/b2CircleShape.cpp
rename to love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2CircleShape.cpp
diff --git a/jni/love/src/libraries/Box2D/Collision/Shapes/b2CircleShape.h b/love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2CircleShape.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/Shapes/b2CircleShape.h
rename to love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2CircleShape.h
diff --git a/jni/love/src/libraries/Box2D/Collision/Shapes/b2EdgeShape.cpp b/love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2EdgeShape.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/Shapes/b2EdgeShape.cpp
rename to love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2EdgeShape.cpp
diff --git a/jni/love/src/libraries/Box2D/Collision/Shapes/b2EdgeShape.h b/love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2EdgeShape.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/Shapes/b2EdgeShape.h
rename to love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2EdgeShape.h
diff --git a/jni/love/src/libraries/Box2D/Collision/Shapes/b2PolygonShape.cpp b/love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2PolygonShape.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/Shapes/b2PolygonShape.cpp
rename to love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2PolygonShape.cpp
diff --git a/jni/love/src/libraries/Box2D/Collision/Shapes/b2PolygonShape.h b/love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2PolygonShape.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/Shapes/b2PolygonShape.h
rename to love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2PolygonShape.h
diff --git a/jni/love/src/libraries/Box2D/Collision/Shapes/b2Shape.h b/love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2Shape.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/Shapes/b2Shape.h
rename to love/src/jni/love/src/libraries/Box2D/Collision/Shapes/b2Shape.h
diff --git a/jni/love/src/libraries/Box2D/Collision/b2BroadPhase.cpp b/love/src/jni/love/src/libraries/Box2D/Collision/b2BroadPhase.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/b2BroadPhase.cpp
rename to love/src/jni/love/src/libraries/Box2D/Collision/b2BroadPhase.cpp
diff --git a/jni/love/src/libraries/Box2D/Collision/b2BroadPhase.h b/love/src/jni/love/src/libraries/Box2D/Collision/b2BroadPhase.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/b2BroadPhase.h
rename to love/src/jni/love/src/libraries/Box2D/Collision/b2BroadPhase.h
diff --git a/jni/love/src/libraries/Box2D/Collision/b2CollideCircle.cpp b/love/src/jni/love/src/libraries/Box2D/Collision/b2CollideCircle.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/b2CollideCircle.cpp
rename to love/src/jni/love/src/libraries/Box2D/Collision/b2CollideCircle.cpp
diff --git a/jni/love/src/libraries/Box2D/Collision/b2CollideEdge.cpp b/love/src/jni/love/src/libraries/Box2D/Collision/b2CollideEdge.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/b2CollideEdge.cpp
rename to love/src/jni/love/src/libraries/Box2D/Collision/b2CollideEdge.cpp
diff --git a/jni/love/src/libraries/Box2D/Collision/b2CollidePolygon.cpp b/love/src/jni/love/src/libraries/Box2D/Collision/b2CollidePolygon.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/b2CollidePolygon.cpp
rename to love/src/jni/love/src/libraries/Box2D/Collision/b2CollidePolygon.cpp
diff --git a/jni/love/src/libraries/Box2D/Collision/b2Collision.cpp b/love/src/jni/love/src/libraries/Box2D/Collision/b2Collision.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/b2Collision.cpp
rename to love/src/jni/love/src/libraries/Box2D/Collision/b2Collision.cpp
diff --git a/jni/love/src/libraries/Box2D/Collision/b2Collision.h b/love/src/jni/love/src/libraries/Box2D/Collision/b2Collision.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/b2Collision.h
rename to love/src/jni/love/src/libraries/Box2D/Collision/b2Collision.h
diff --git a/jni/love/src/libraries/Box2D/Collision/b2Distance.cpp b/love/src/jni/love/src/libraries/Box2D/Collision/b2Distance.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/b2Distance.cpp
rename to love/src/jni/love/src/libraries/Box2D/Collision/b2Distance.cpp
diff --git a/jni/love/src/libraries/Box2D/Collision/b2Distance.h b/love/src/jni/love/src/libraries/Box2D/Collision/b2Distance.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/b2Distance.h
rename to love/src/jni/love/src/libraries/Box2D/Collision/b2Distance.h
diff --git a/jni/love/src/libraries/Box2D/Collision/b2DynamicTree.cpp b/love/src/jni/love/src/libraries/Box2D/Collision/b2DynamicTree.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/b2DynamicTree.cpp
rename to love/src/jni/love/src/libraries/Box2D/Collision/b2DynamicTree.cpp
diff --git a/jni/love/src/libraries/Box2D/Collision/b2DynamicTree.h b/love/src/jni/love/src/libraries/Box2D/Collision/b2DynamicTree.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/b2DynamicTree.h
rename to love/src/jni/love/src/libraries/Box2D/Collision/b2DynamicTree.h
diff --git a/jni/love/src/libraries/Box2D/Collision/b2TimeOfImpact.cpp b/love/src/jni/love/src/libraries/Box2D/Collision/b2TimeOfImpact.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/b2TimeOfImpact.cpp
rename to love/src/jni/love/src/libraries/Box2D/Collision/b2TimeOfImpact.cpp
diff --git a/jni/love/src/libraries/Box2D/Collision/b2TimeOfImpact.h b/love/src/jni/love/src/libraries/Box2D/Collision/b2TimeOfImpact.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Collision/b2TimeOfImpact.h
rename to love/src/jni/love/src/libraries/Box2D/Collision/b2TimeOfImpact.h
diff --git a/jni/love/src/libraries/Box2D/Common/b2BlockAllocator.cpp b/love/src/jni/love/src/libraries/Box2D/Common/b2BlockAllocator.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Common/b2BlockAllocator.cpp
rename to love/src/jni/love/src/libraries/Box2D/Common/b2BlockAllocator.cpp
diff --git a/jni/love/src/libraries/Box2D/Common/b2BlockAllocator.h b/love/src/jni/love/src/libraries/Box2D/Common/b2BlockAllocator.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Common/b2BlockAllocator.h
rename to love/src/jni/love/src/libraries/Box2D/Common/b2BlockAllocator.h
diff --git a/jni/love/src/libraries/Box2D/Common/b2Draw.cpp b/love/src/jni/love/src/libraries/Box2D/Common/b2Draw.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Common/b2Draw.cpp
rename to love/src/jni/love/src/libraries/Box2D/Common/b2Draw.cpp
diff --git a/jni/love/src/libraries/Box2D/Common/b2Draw.h b/love/src/jni/love/src/libraries/Box2D/Common/b2Draw.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Common/b2Draw.h
rename to love/src/jni/love/src/libraries/Box2D/Common/b2Draw.h
diff --git a/jni/love/src/libraries/Box2D/Common/b2GrowableStack.h b/love/src/jni/love/src/libraries/Box2D/Common/b2GrowableStack.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Common/b2GrowableStack.h
rename to love/src/jni/love/src/libraries/Box2D/Common/b2GrowableStack.h
diff --git a/jni/love/src/libraries/Box2D/Common/b2Math.cpp b/love/src/jni/love/src/libraries/Box2D/Common/b2Math.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Common/b2Math.cpp
rename to love/src/jni/love/src/libraries/Box2D/Common/b2Math.cpp
diff --git a/jni/love/src/libraries/Box2D/Common/b2Math.h b/love/src/jni/love/src/libraries/Box2D/Common/b2Math.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Common/b2Math.h
rename to love/src/jni/love/src/libraries/Box2D/Common/b2Math.h
diff --git a/jni/love/src/libraries/Box2D/Common/b2Settings.cpp b/love/src/jni/love/src/libraries/Box2D/Common/b2Settings.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Common/b2Settings.cpp
rename to love/src/jni/love/src/libraries/Box2D/Common/b2Settings.cpp
diff --git a/jni/love/src/libraries/Box2D/Common/b2Settings.h b/love/src/jni/love/src/libraries/Box2D/Common/b2Settings.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Common/b2Settings.h
rename to love/src/jni/love/src/libraries/Box2D/Common/b2Settings.h
diff --git a/jni/love/src/libraries/Box2D/Common/b2StackAllocator.cpp b/love/src/jni/love/src/libraries/Box2D/Common/b2StackAllocator.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Common/b2StackAllocator.cpp
rename to love/src/jni/love/src/libraries/Box2D/Common/b2StackAllocator.cpp
diff --git a/jni/love/src/libraries/Box2D/Common/b2StackAllocator.h b/love/src/jni/love/src/libraries/Box2D/Common/b2StackAllocator.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Common/b2StackAllocator.h
rename to love/src/jni/love/src/libraries/Box2D/Common/b2StackAllocator.h
diff --git a/jni/love/src/libraries/Box2D/Common/b2Timer.cpp b/love/src/jni/love/src/libraries/Box2D/Common/b2Timer.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Common/b2Timer.cpp
rename to love/src/jni/love/src/libraries/Box2D/Common/b2Timer.cpp
diff --git a/jni/love/src/libraries/Box2D/Common/b2Timer.h b/love/src/jni/love/src/libraries/Box2D/Common/b2Timer.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Common/b2Timer.h
rename to love/src/jni/love/src/libraries/Box2D/Common/b2Timer.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2CircleContact.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2CircleContact.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2CircleContact.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2CircleContact.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2CircleContact.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2CircleContact.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2CircleContact.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2CircleContact.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2Contact.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2Contact.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2Contact.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2Contact.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2Contact.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2Contact.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2Contact.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2Contact.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ContactSolver.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ContactSolver.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ContactSolver.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ContactSolver.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ContactSolver.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ContactSolver.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ContactSolver.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2ContactSolver.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonContact.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonContact.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonContact.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonContact.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonContact.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonContact.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonContact.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Contacts/b2PolygonContact.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2DistanceJoint.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2DistanceJoint.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2DistanceJoint.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2DistanceJoint.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2DistanceJoint.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2DistanceJoint.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2DistanceJoint.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2DistanceJoint.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2FrictionJoint.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2FrictionJoint.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2FrictionJoint.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2FrictionJoint.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2FrictionJoint.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2FrictionJoint.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2FrictionJoint.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2FrictionJoint.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2GearJoint.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2GearJoint.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2GearJoint.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2GearJoint.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2GearJoint.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2GearJoint.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2GearJoint.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2GearJoint.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2Joint.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2Joint.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2Joint.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2Joint.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2Joint.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2Joint.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2Joint.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2Joint.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2MotorJoint.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2MotorJoint.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2MotorJoint.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2MotorJoint.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2MotorJoint.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2MotorJoint.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2MotorJoint.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2MotorJoint.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2MouseJoint.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2MouseJoint.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2MouseJoint.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2MouseJoint.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2MouseJoint.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2MouseJoint.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2MouseJoint.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2MouseJoint.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2PrismaticJoint.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2PrismaticJoint.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2PrismaticJoint.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2PrismaticJoint.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2PulleyJoint.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2PulleyJoint.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2PulleyJoint.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2PulleyJoint.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2PulleyJoint.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2PulleyJoint.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2PulleyJoint.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2PulleyJoint.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2RevoluteJoint.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2RevoluteJoint.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2RevoluteJoint.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2RevoluteJoint.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2RopeJoint.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2RopeJoint.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2RopeJoint.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2RopeJoint.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2RopeJoint.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2RopeJoint.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2RopeJoint.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2RopeJoint.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2WeldJoint.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2WeldJoint.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2WeldJoint.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2WeldJoint.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2WeldJoint.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2WeldJoint.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2WeldJoint.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2WeldJoint.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2WheelJoint.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2WheelJoint.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2WheelJoint.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2WheelJoint.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/Joints/b2WheelJoint.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2WheelJoint.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/Joints/b2WheelJoint.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/Joints/b2WheelJoint.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/b2Body.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/b2Body.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/b2Body.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/b2Body.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/b2Body.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/b2Body.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/b2Body.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/b2Body.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/b2ContactManager.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/b2ContactManager.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/b2ContactManager.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/b2ContactManager.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/b2ContactManager.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/b2ContactManager.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/b2ContactManager.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/b2ContactManager.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/b2Fixture.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/b2Fixture.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/b2Fixture.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/b2Fixture.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/b2Fixture.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/b2Fixture.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/b2Fixture.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/b2Fixture.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/b2Island.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/b2Island.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/b2Island.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/b2Island.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/b2Island.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/b2Island.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/b2Island.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/b2Island.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/b2TimeStep.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/b2TimeStep.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/b2TimeStep.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/b2TimeStep.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/b2World.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/b2World.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/b2World.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/b2World.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/b2World.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/b2World.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/b2World.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/b2World.h
diff --git a/jni/love/src/libraries/Box2D/Dynamics/b2WorldCallbacks.cpp b/love/src/jni/love/src/libraries/Box2D/Dynamics/b2WorldCallbacks.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/b2WorldCallbacks.cpp
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/b2WorldCallbacks.cpp
diff --git a/jni/love/src/libraries/Box2D/Dynamics/b2WorldCallbacks.h b/love/src/jni/love/src/libraries/Box2D/Dynamics/b2WorldCallbacks.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Dynamics/b2WorldCallbacks.h
rename to love/src/jni/love/src/libraries/Box2D/Dynamics/b2WorldCallbacks.h
diff --git a/jni/love/src/libraries/Box2D/README.MODIFIED b/love/src/jni/love/src/libraries/Box2D/README.MODIFIED
similarity index 100%
rename from jni/love/src/libraries/Box2D/README.MODIFIED
rename to love/src/jni/love/src/libraries/Box2D/README.MODIFIED
diff --git a/jni/love/src/libraries/Box2D/Rope/b2Rope.cpp b/love/src/jni/love/src/libraries/Box2D/Rope/b2Rope.cpp
similarity index 100%
rename from jni/love/src/libraries/Box2D/Rope/b2Rope.cpp
rename to love/src/jni/love/src/libraries/Box2D/Rope/b2Rope.cpp
diff --git a/jni/love/src/libraries/Box2D/Rope/b2Rope.h b/love/src/jni/love/src/libraries/Box2D/Rope/b2Rope.h
similarity index 100%
rename from jni/love/src/libraries/Box2D/Rope/b2Rope.h
rename to love/src/jni/love/src/libraries/Box2D/Rope/b2Rope.h
diff --git a/jni/love/src/libraries/Wuff/wuff.c b/love/src/jni/love/src/libraries/Wuff/wuff.c
similarity index 100%
rename from jni/love/src/libraries/Wuff/wuff.c
rename to love/src/jni/love/src/libraries/Wuff/wuff.c
diff --git a/jni/love/src/libraries/Wuff/wuff.h b/love/src/jni/love/src/libraries/Wuff/wuff.h
similarity index 100%
rename from jni/love/src/libraries/Wuff/wuff.h
rename to love/src/jni/love/src/libraries/Wuff/wuff.h
diff --git a/jni/love/src/libraries/Wuff/wuff_config.h b/love/src/jni/love/src/libraries/Wuff/wuff_config.h
similarity index 100%
rename from jni/love/src/libraries/Wuff/wuff_config.h
rename to love/src/jni/love/src/libraries/Wuff/wuff_config.h
diff --git a/jni/love/src/libraries/Wuff/wuff_convert.c b/love/src/jni/love/src/libraries/Wuff/wuff_convert.c
similarity index 100%
rename from jni/love/src/libraries/Wuff/wuff_convert.c
rename to love/src/jni/love/src/libraries/Wuff/wuff_convert.c
diff --git a/jni/love/src/libraries/Wuff/wuff_convert.h b/love/src/jni/love/src/libraries/Wuff/wuff_convert.h
similarity index 100%
rename from jni/love/src/libraries/Wuff/wuff_convert.h
rename to love/src/jni/love/src/libraries/Wuff/wuff_convert.h
diff --git a/jni/love/src/libraries/Wuff/wuff_internal.c b/love/src/jni/love/src/libraries/Wuff/wuff_internal.c
similarity index 100%
rename from jni/love/src/libraries/Wuff/wuff_internal.c
rename to love/src/jni/love/src/libraries/Wuff/wuff_internal.c
diff --git a/jni/love/src/libraries/Wuff/wuff_internal.h b/love/src/jni/love/src/libraries/Wuff/wuff_internal.h
similarity index 100%
rename from jni/love/src/libraries/Wuff/wuff_internal.h
rename to love/src/jni/love/src/libraries/Wuff/wuff_internal.h
diff --git a/jni/love/src/libraries/Wuff/wuff_memory.c b/love/src/jni/love/src/libraries/Wuff/wuff_memory.c
similarity index 100%
rename from jni/love/src/libraries/Wuff/wuff_memory.c
rename to love/src/jni/love/src/libraries/Wuff/wuff_memory.c
diff --git a/jni/love/src/libraries/ddsparse/ddsinfo.h b/love/src/jni/love/src/libraries/ddsparse/ddsinfo.h
similarity index 100%
rename from jni/love/src/libraries/ddsparse/ddsinfo.h
rename to love/src/jni/love/src/libraries/ddsparse/ddsinfo.h
diff --git a/jni/love/src/libraries/ddsparse/ddsparse.cpp b/love/src/jni/love/src/libraries/ddsparse/ddsparse.cpp
similarity index 100%
rename from jni/love/src/libraries/ddsparse/ddsparse.cpp
rename to love/src/jni/love/src/libraries/ddsparse/ddsparse.cpp
diff --git a/jni/love/src/libraries/ddsparse/ddsparse.h b/love/src/jni/love/src/libraries/ddsparse/ddsparse.h
similarity index 100%
rename from jni/love/src/libraries/ddsparse/ddsparse.h
rename to love/src/jni/love/src/libraries/ddsparse/ddsparse.h
diff --git a/jni/love/src/libraries/enet/enet.cpp b/love/src/jni/love/src/libraries/enet/enet.cpp
similarity index 100%
rename from jni/love/src/libraries/enet/enet.cpp
rename to love/src/jni/love/src/libraries/enet/enet.cpp
diff --git a/jni/love/src/libraries/enet/libenet/ChangeLog b/love/src/jni/love/src/libraries/enet/libenet/ChangeLog
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/ChangeLog
rename to love/src/jni/love/src/libraries/enet/libenet/ChangeLog
diff --git a/jni/love/src/libraries/enet/libenet/LICENSE b/love/src/jni/love/src/libraries/enet/libenet/LICENSE
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/LICENSE
rename to love/src/jni/love/src/libraries/enet/libenet/LICENSE
diff --git a/jni/love/src/libraries/enet/libenet/README b/love/src/jni/love/src/libraries/enet/libenet/README
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/README
rename to love/src/jni/love/src/libraries/enet/libenet/README
diff --git a/jni/love/src/libraries/enet/libenet/callbacks.c b/love/src/jni/love/src/libraries/enet/libenet/callbacks.c
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/callbacks.c
rename to love/src/jni/love/src/libraries/enet/libenet/callbacks.c
diff --git a/jni/love/src/libraries/enet/libenet/compress.c b/love/src/jni/love/src/libraries/enet/libenet/compress.c
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/compress.c
rename to love/src/jni/love/src/libraries/enet/libenet/compress.c
diff --git a/jni/love/src/libraries/enet/libenet/host.c b/love/src/jni/love/src/libraries/enet/libenet/host.c
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/host.c
rename to love/src/jni/love/src/libraries/enet/libenet/host.c
diff --git a/jni/love/src/libraries/enet/libenet/include/enet/callbacks.h b/love/src/jni/love/src/libraries/enet/libenet/include/enet/callbacks.h
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/include/enet/callbacks.h
rename to love/src/jni/love/src/libraries/enet/libenet/include/enet/callbacks.h
diff --git a/jni/love/src/libraries/enet/libenet/include/enet/enet.h b/love/src/jni/love/src/libraries/enet/libenet/include/enet/enet.h
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/include/enet/enet.h
rename to love/src/jni/love/src/libraries/enet/libenet/include/enet/enet.h
diff --git a/jni/love/src/libraries/enet/libenet/include/enet/list.h b/love/src/jni/love/src/libraries/enet/libenet/include/enet/list.h
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/include/enet/list.h
rename to love/src/jni/love/src/libraries/enet/libenet/include/enet/list.h
diff --git a/jni/love/src/libraries/enet/libenet/include/enet/protocol.h b/love/src/jni/love/src/libraries/enet/libenet/include/enet/protocol.h
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/include/enet/protocol.h
rename to love/src/jni/love/src/libraries/enet/libenet/include/enet/protocol.h
diff --git a/jni/love/src/libraries/enet/libenet/include/enet/time.h b/love/src/jni/love/src/libraries/enet/libenet/include/enet/time.h
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/include/enet/time.h
rename to love/src/jni/love/src/libraries/enet/libenet/include/enet/time.h
diff --git a/jni/love/src/libraries/enet/libenet/include/enet/types.h b/love/src/jni/love/src/libraries/enet/libenet/include/enet/types.h
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/include/enet/types.h
rename to love/src/jni/love/src/libraries/enet/libenet/include/enet/types.h
diff --git a/jni/love/src/libraries/enet/libenet/include/enet/unix.h b/love/src/jni/love/src/libraries/enet/libenet/include/enet/unix.h
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/include/enet/unix.h
rename to love/src/jni/love/src/libraries/enet/libenet/include/enet/unix.h
diff --git a/jni/love/src/libraries/enet/libenet/include/enet/utility.h b/love/src/jni/love/src/libraries/enet/libenet/include/enet/utility.h
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/include/enet/utility.h
rename to love/src/jni/love/src/libraries/enet/libenet/include/enet/utility.h
diff --git a/jni/love/src/libraries/enet/libenet/include/enet/win32.h b/love/src/jni/love/src/libraries/enet/libenet/include/enet/win32.h
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/include/enet/win32.h
rename to love/src/jni/love/src/libraries/enet/libenet/include/enet/win32.h
diff --git a/jni/love/src/libraries/enet/libenet/list.c b/love/src/jni/love/src/libraries/enet/libenet/list.c
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/list.c
rename to love/src/jni/love/src/libraries/enet/libenet/list.c
diff --git a/jni/love/src/libraries/enet/libenet/packet.c b/love/src/jni/love/src/libraries/enet/libenet/packet.c
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/packet.c
rename to love/src/jni/love/src/libraries/enet/libenet/packet.c
diff --git a/jni/love/src/libraries/enet/libenet/peer.c b/love/src/jni/love/src/libraries/enet/libenet/peer.c
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/peer.c
rename to love/src/jni/love/src/libraries/enet/libenet/peer.c
diff --git a/jni/love/src/libraries/enet/libenet/protocol.c b/love/src/jni/love/src/libraries/enet/libenet/protocol.c
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/protocol.c
rename to love/src/jni/love/src/libraries/enet/libenet/protocol.c
diff --git a/jni/love/src/libraries/enet/libenet/unix.c b/love/src/jni/love/src/libraries/enet/libenet/unix.c
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/unix.c
rename to love/src/jni/love/src/libraries/enet/libenet/unix.c
diff --git a/jni/love/src/libraries/enet/libenet/win32.c b/love/src/jni/love/src/libraries/enet/libenet/win32.c
similarity index 100%
rename from jni/love/src/libraries/enet/libenet/win32.c
rename to love/src/jni/love/src/libraries/enet/libenet/win32.c
diff --git a/jni/love/src/libraries/enet/lua-enet.h b/love/src/jni/love/src/libraries/enet/lua-enet.h
similarity index 100%
rename from jni/love/src/libraries/enet/lua-enet.h
rename to love/src/jni/love/src/libraries/enet/lua-enet.h
diff --git a/jni/love/src/libraries/glad/glad.cpp b/love/src/jni/love/src/libraries/glad/glad.cpp
similarity index 100%
rename from jni/love/src/libraries/glad/glad.cpp
rename to love/src/jni/love/src/libraries/glad/glad.cpp
diff --git a/jni/love/src/libraries/glad/glad.hpp b/love/src/jni/love/src/libraries/glad/glad.hpp
similarity index 100%
rename from jni/love/src/libraries/glad/glad.hpp
rename to love/src/jni/love/src/libraries/glad/glad.hpp
diff --git a/jni/love/src/libraries/glad/gladfuncs.hpp b/love/src/jni/love/src/libraries/glad/gladfuncs.hpp
similarity index 100%
rename from jni/love/src/libraries/glad/gladfuncs.hpp
rename to love/src/jni/love/src/libraries/glad/gladfuncs.hpp
diff --git a/jni/love/src/libraries/lodepng/lodepng.cpp b/love/src/jni/love/src/libraries/lodepng/lodepng.cpp
similarity index 100%
rename from jni/love/src/libraries/lodepng/lodepng.cpp
rename to love/src/jni/love/src/libraries/lodepng/lodepng.cpp
diff --git a/jni/love/src/libraries/lodepng/lodepng.h b/love/src/jni/love/src/libraries/lodepng/lodepng.h
similarity index 100%
rename from jni/love/src/libraries/lodepng/lodepng.h
rename to love/src/jni/love/src/libraries/lodepng/lodepng.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/auxiliar.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/auxiliar.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/auxiliar.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/auxiliar.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/auxiliar.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/auxiliar.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/auxiliar.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/auxiliar.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/buffer.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/buffer.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/buffer.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/buffer.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/buffer.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/buffer.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/buffer.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/buffer.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/except.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/except.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/except.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/except.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/except.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/except.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/except.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/except.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/ftp.lua b/love/src/jni/love/src/libraries/luasocket/libluasocket/ftp.lua
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/ftp.lua
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/ftp.lua
diff --git a/jni/love/src/libraries/luasocket/libluasocket/ftp.lua.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/ftp.lua.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/ftp.lua.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/ftp.lua.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/http.lua b/love/src/jni/love/src/libraries/luasocket/libluasocket/http.lua
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/http.lua
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/http.lua
diff --git a/jni/love/src/libraries/luasocket/libluasocket/http.lua.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/http.lua.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/http.lua.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/http.lua.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/inet.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/inet.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/inet.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/inet.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/inet.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/inet.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/inet.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/inet.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/io.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/io.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/io.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/io.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/io.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/io.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/io.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/io.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/ltn12.lua b/love/src/jni/love/src/libraries/luasocket/libluasocket/ltn12.lua
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/ltn12.lua
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/ltn12.lua
diff --git a/jni/love/src/libraries/luasocket/libluasocket/ltn12.lua.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/ltn12.lua.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/ltn12.lua.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/ltn12.lua.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/lua.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/lua.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/lua.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/lua.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/luasocket.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/luasocket.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/luasocket.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/luasocket.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/luasocket.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/luasocket.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/luasocket.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/luasocket.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/mime.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/mime.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/mime.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/mime.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/mime.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/mime.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/mime.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/mime.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/mime.lua b/love/src/jni/love/src/libraries/luasocket/libluasocket/mime.lua
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/mime.lua
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/mime.lua
diff --git a/jni/love/src/libraries/luasocket/libluasocket/mime.lua.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/mime.lua.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/mime.lua.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/mime.lua.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/options.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/options.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/options.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/options.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/options.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/options.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/options.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/options.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/pre.lua b/love/src/jni/love/src/libraries/luasocket/libluasocket/pre.lua
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/pre.lua
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/pre.lua
diff --git a/jni/love/src/libraries/luasocket/libluasocket/select.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/select.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/select.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/select.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/select.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/select.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/select.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/select.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/smtp.lua b/love/src/jni/love/src/libraries/luasocket/libluasocket/smtp.lua
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/smtp.lua
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/smtp.lua
diff --git a/jni/love/src/libraries/luasocket/libluasocket/smtp.lua.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/smtp.lua.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/smtp.lua.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/smtp.lua.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/socket.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/socket.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/socket.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/socket.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/socket.lua b/love/src/jni/love/src/libraries/luasocket/libluasocket/socket.lua
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/socket.lua
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/socket.lua
diff --git a/jni/love/src/libraries/luasocket/libluasocket/socket.lua.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/socket.lua.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/socket.lua.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/socket.lua.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/tcp.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/tcp.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/tcp.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/tcp.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/tcp.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/tcp.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/tcp.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/tcp.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/timeout.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/timeout.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/timeout.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/timeout.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/timeout.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/timeout.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/timeout.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/timeout.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/tp.lua b/love/src/jni/love/src/libraries/luasocket/libluasocket/tp.lua
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/tp.lua
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/tp.lua
diff --git a/jni/love/src/libraries/luasocket/libluasocket/tp.lua.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/tp.lua.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/tp.lua.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/tp.lua.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/udp.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/udp.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/udp.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/udp.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/udp.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/udp.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/udp.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/udp.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/unix.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/unix.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/unix.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/unix.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/unix.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/unix.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/unix.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/unix.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/url.lua b/love/src/jni/love/src/libraries/luasocket/libluasocket/url.lua
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/url.lua
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/url.lua
diff --git a/jni/love/src/libraries/luasocket/libluasocket/url.lua.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/url.lua.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/url.lua.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/url.lua.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/usocket.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/usocket.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/usocket.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/usocket.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/usocket.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/usocket.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/usocket.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/usocket.h
diff --git a/jni/love/src/libraries/luasocket/libluasocket/wsocket.c b/love/src/jni/love/src/libraries/luasocket/libluasocket/wsocket.c
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/wsocket.c
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/wsocket.c
diff --git a/jni/love/src/libraries/luasocket/libluasocket/wsocket.h b/love/src/jni/love/src/libraries/luasocket/libluasocket/wsocket.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/libluasocket/wsocket.h
rename to love/src/jni/love/src/libraries/luasocket/libluasocket/wsocket.h
diff --git a/jni/love/src/libraries/luasocket/luasocket.cpp b/love/src/jni/love/src/libraries/luasocket/luasocket.cpp
similarity index 100%
rename from jni/love/src/libraries/luasocket/luasocket.cpp
rename to love/src/jni/love/src/libraries/luasocket/luasocket.cpp
diff --git a/jni/love/src/libraries/luasocket/luasocket.h b/love/src/jni/love/src/libraries/luasocket/luasocket.h
similarity index 100%
rename from jni/love/src/libraries/luasocket/luasocket.h
rename to love/src/jni/love/src/libraries/luasocket/luasocket.h
diff --git a/jni/love/src/libraries/luautf8/lprefix.h b/love/src/jni/love/src/libraries/luautf8/lprefix.h
similarity index 100%
rename from jni/love/src/libraries/luautf8/lprefix.h
rename to love/src/jni/love/src/libraries/luautf8/lprefix.h
diff --git a/jni/love/src/libraries/luautf8/lutf8lib.c b/love/src/jni/love/src/libraries/luautf8/lutf8lib.c
similarity index 100%
rename from jni/love/src/libraries/luautf8/lutf8lib.c
rename to love/src/jni/love/src/libraries/luautf8/lutf8lib.c
diff --git a/jni/love/src/libraries/luautf8/lutf8lib.h b/love/src/jni/love/src/libraries/luautf8/lutf8lib.h
similarity index 100%
rename from jni/love/src/libraries/luautf8/lutf8lib.h
rename to love/src/jni/love/src/libraries/luautf8/lutf8lib.h
diff --git a/jni/love/src/libraries/lz4/lz4.c b/love/src/jni/love/src/libraries/lz4/lz4.c
similarity index 100%
rename from jni/love/src/libraries/lz4/lz4.c
rename to love/src/jni/love/src/libraries/lz4/lz4.c
diff --git a/jni/love/src/libraries/lz4/lz4.h b/love/src/jni/love/src/libraries/lz4/lz4.h
similarity index 100%
rename from jni/love/src/libraries/lz4/lz4.h
rename to love/src/jni/love/src/libraries/lz4/lz4.h
diff --git a/jni/love/src/libraries/lz4/lz4hc.c b/love/src/jni/love/src/libraries/lz4/lz4hc.c
similarity index 100%
rename from jni/love/src/libraries/lz4/lz4hc.c
rename to love/src/jni/love/src/libraries/lz4/lz4hc.c
diff --git a/jni/love/src/libraries/lz4/lz4hc.h b/love/src/jni/love/src/libraries/lz4/lz4hc.h
similarity index 100%
rename from jni/love/src/libraries/lz4/lz4hc.h
rename to love/src/jni/love/src/libraries/lz4/lz4hc.h
diff --git a/jni/love/src/libraries/noise1234/noise1234.cpp b/love/src/jni/love/src/libraries/noise1234/noise1234.cpp
similarity index 100%
rename from jni/love/src/libraries/noise1234/noise1234.cpp
rename to love/src/jni/love/src/libraries/noise1234/noise1234.cpp
diff --git a/jni/love/src/libraries/noise1234/noise1234.h b/love/src/jni/love/src/libraries/noise1234/noise1234.h
similarity index 100%
rename from jni/love/src/libraries/noise1234/noise1234.h
rename to love/src/jni/love/src/libraries/noise1234/noise1234.h
diff --git a/jni/love/src/libraries/noise1234/simplexnoise1234.cpp b/love/src/jni/love/src/libraries/noise1234/simplexnoise1234.cpp
similarity index 100%
rename from jni/love/src/libraries/noise1234/simplexnoise1234.cpp
rename to love/src/jni/love/src/libraries/noise1234/simplexnoise1234.cpp
diff --git a/jni/love/src/libraries/noise1234/simplexnoise1234.h b/love/src/jni/love/src/libraries/noise1234/simplexnoise1234.h
similarity index 100%
rename from jni/love/src/libraries/noise1234/simplexnoise1234.h
rename to love/src/jni/love/src/libraries/noise1234/simplexnoise1234.h
diff --git a/jni/love/src/libraries/stb/stb_image.h b/love/src/jni/love/src/libraries/stb/stb_image.h
similarity index 100%
rename from jni/love/src/libraries/stb/stb_image.h
rename to love/src/jni/love/src/libraries/stb/stb_image.h
diff --git a/jni/love/src/libraries/utf8/utf8.h b/love/src/jni/love/src/libraries/utf8/utf8.h
similarity index 100%
rename from jni/love/src/libraries/utf8/utf8.h
rename to love/src/jni/love/src/libraries/utf8/utf8.h
diff --git a/jni/love/src/libraries/utf8/utf8/checked.h b/love/src/jni/love/src/libraries/utf8/utf8/checked.h
similarity index 100%
rename from jni/love/src/libraries/utf8/utf8/checked.h
rename to love/src/jni/love/src/libraries/utf8/utf8/checked.h
diff --git a/jni/love/src/libraries/utf8/utf8/core.h b/love/src/jni/love/src/libraries/utf8/utf8/core.h
similarity index 100%
rename from jni/love/src/libraries/utf8/utf8/core.h
rename to love/src/jni/love/src/libraries/utf8/utf8/core.h
diff --git a/jni/love/src/libraries/utf8/utf8/unchecked.h b/love/src/jni/love/src/libraries/utf8/utf8/unchecked.h
similarity index 100%
rename from jni/love/src/libraries/utf8/utf8/unchecked.h
rename to love/src/jni/love/src/libraries/utf8/utf8/unchecked.h
diff --git a/jni/love/src/love.cpp b/love/src/jni/love/src/love.cpp
similarity index 100%
rename from jni/love/src/love.cpp
rename to love/src/jni/love/src/love.cpp
diff --git a/jni/love/src/modules/audio/Audio.cpp b/love/src/jni/love/src/modules/audio/Audio.cpp
similarity index 100%
rename from jni/love/src/modules/audio/Audio.cpp
rename to love/src/jni/love/src/modules/audio/Audio.cpp
diff --git a/jni/love/src/modules/audio/Audio.h b/love/src/jni/love/src/modules/audio/Audio.h
similarity index 100%
rename from jni/love/src/modules/audio/Audio.h
rename to love/src/jni/love/src/modules/audio/Audio.h
diff --git a/jni/love/src/modules/audio/Source.cpp b/love/src/jni/love/src/modules/audio/Source.cpp
similarity index 100%
rename from jni/love/src/modules/audio/Source.cpp
rename to love/src/jni/love/src/modules/audio/Source.cpp
diff --git a/jni/love/src/modules/audio/Source.h b/love/src/jni/love/src/modules/audio/Source.h
similarity index 100%
rename from jni/love/src/modules/audio/Source.h
rename to love/src/jni/love/src/modules/audio/Source.h
diff --git a/jni/love/src/modules/audio/null/Audio.cpp b/love/src/jni/love/src/modules/audio/null/Audio.cpp
similarity index 100%
rename from jni/love/src/modules/audio/null/Audio.cpp
rename to love/src/jni/love/src/modules/audio/null/Audio.cpp
diff --git a/jni/love/src/modules/audio/null/Audio.h b/love/src/jni/love/src/modules/audio/null/Audio.h
similarity index 100%
rename from jni/love/src/modules/audio/null/Audio.h
rename to love/src/jni/love/src/modules/audio/null/Audio.h
diff --git a/jni/love/src/modules/audio/null/Source.cpp b/love/src/jni/love/src/modules/audio/null/Source.cpp
similarity index 100%
rename from jni/love/src/modules/audio/null/Source.cpp
rename to love/src/jni/love/src/modules/audio/null/Source.cpp
diff --git a/jni/love/src/modules/audio/null/Source.h b/love/src/jni/love/src/modules/audio/null/Source.h
similarity index 100%
rename from jni/love/src/modules/audio/null/Source.h
rename to love/src/jni/love/src/modules/audio/null/Source.h
diff --git a/jni/love/src/modules/audio/openal/Audio.cpp b/love/src/jni/love/src/modules/audio/openal/Audio.cpp
similarity index 100%
rename from jni/love/src/modules/audio/openal/Audio.cpp
rename to love/src/jni/love/src/modules/audio/openal/Audio.cpp
diff --git a/jni/love/src/modules/audio/openal/Audio.h b/love/src/jni/love/src/modules/audio/openal/Audio.h
similarity index 100%
rename from jni/love/src/modules/audio/openal/Audio.h
rename to love/src/jni/love/src/modules/audio/openal/Audio.h
diff --git a/jni/love/src/modules/audio/openal/Pool.cpp b/love/src/jni/love/src/modules/audio/openal/Pool.cpp
similarity index 100%
rename from jni/love/src/modules/audio/openal/Pool.cpp
rename to love/src/jni/love/src/modules/audio/openal/Pool.cpp
diff --git a/jni/love/src/modules/audio/openal/Pool.h b/love/src/jni/love/src/modules/audio/openal/Pool.h
similarity index 100%
rename from jni/love/src/modules/audio/openal/Pool.h
rename to love/src/jni/love/src/modules/audio/openal/Pool.h
diff --git a/jni/love/src/modules/audio/openal/Source.cpp b/love/src/jni/love/src/modules/audio/openal/Source.cpp
similarity index 100%
rename from jni/love/src/modules/audio/openal/Source.cpp
rename to love/src/jni/love/src/modules/audio/openal/Source.cpp
diff --git a/jni/love/src/modules/audio/openal/Source.h b/love/src/jni/love/src/modules/audio/openal/Source.h
similarity index 100%
rename from jni/love/src/modules/audio/openal/Source.h
rename to love/src/jni/love/src/modules/audio/openal/Source.h
diff --git a/jni/love/src/modules/audio/wrap_Audio.cpp b/love/src/jni/love/src/modules/audio/wrap_Audio.cpp
similarity index 100%
rename from jni/love/src/modules/audio/wrap_Audio.cpp
rename to love/src/jni/love/src/modules/audio/wrap_Audio.cpp
diff --git a/jni/love/src/modules/audio/wrap_Audio.h b/love/src/jni/love/src/modules/audio/wrap_Audio.h
similarity index 100%
rename from jni/love/src/modules/audio/wrap_Audio.h
rename to love/src/jni/love/src/modules/audio/wrap_Audio.h
diff --git a/jni/love/src/modules/audio/wrap_Source.cpp b/love/src/jni/love/src/modules/audio/wrap_Source.cpp
similarity index 100%
rename from jni/love/src/modules/audio/wrap_Source.cpp
rename to love/src/jni/love/src/modules/audio/wrap_Source.cpp
diff --git a/jni/love/src/modules/audio/wrap_Source.h b/love/src/jni/love/src/modules/audio/wrap_Source.h
similarity index 100%
rename from jni/love/src/modules/audio/wrap_Source.h
rename to love/src/jni/love/src/modules/audio/wrap_Source.h
diff --git a/jni/love/src/modules/event/Event.cpp b/love/src/jni/love/src/modules/event/Event.cpp
similarity index 100%
rename from jni/love/src/modules/event/Event.cpp
rename to love/src/jni/love/src/modules/event/Event.cpp
diff --git a/jni/love/src/modules/event/Event.h b/love/src/jni/love/src/modules/event/Event.h
similarity index 100%
rename from jni/love/src/modules/event/Event.h
rename to love/src/jni/love/src/modules/event/Event.h
diff --git a/jni/love/src/modules/event/sdl/Event.cpp b/love/src/jni/love/src/modules/event/sdl/Event.cpp
similarity index 100%
rename from jni/love/src/modules/event/sdl/Event.cpp
rename to love/src/jni/love/src/modules/event/sdl/Event.cpp
diff --git a/jni/love/src/modules/event/sdl/Event.h b/love/src/jni/love/src/modules/event/sdl/Event.h
similarity index 100%
rename from jni/love/src/modules/event/sdl/Event.h
rename to love/src/jni/love/src/modules/event/sdl/Event.h
diff --git a/jni/love/src/modules/event/wrap_Event.cpp b/love/src/jni/love/src/modules/event/wrap_Event.cpp
similarity index 100%
rename from jni/love/src/modules/event/wrap_Event.cpp
rename to love/src/jni/love/src/modules/event/wrap_Event.cpp
diff --git a/jni/love/src/modules/event/wrap_Event.h b/love/src/jni/love/src/modules/event/wrap_Event.h
similarity index 100%
rename from jni/love/src/modules/event/wrap_Event.h
rename to love/src/jni/love/src/modules/event/wrap_Event.h
diff --git a/jni/love/src/modules/filesystem/DroppedFile.cpp b/love/src/jni/love/src/modules/filesystem/DroppedFile.cpp
similarity index 100%
rename from jni/love/src/modules/filesystem/DroppedFile.cpp
rename to love/src/jni/love/src/modules/filesystem/DroppedFile.cpp
diff --git a/jni/love/src/modules/filesystem/DroppedFile.h b/love/src/jni/love/src/modules/filesystem/DroppedFile.h
similarity index 100%
rename from jni/love/src/modules/filesystem/DroppedFile.h
rename to love/src/jni/love/src/modules/filesystem/DroppedFile.h
diff --git a/jni/love/src/modules/filesystem/File.cpp b/love/src/jni/love/src/modules/filesystem/File.cpp
similarity index 100%
rename from jni/love/src/modules/filesystem/File.cpp
rename to love/src/jni/love/src/modules/filesystem/File.cpp
diff --git a/jni/love/src/modules/filesystem/File.h b/love/src/jni/love/src/modules/filesystem/File.h
similarity index 100%
rename from jni/love/src/modules/filesystem/File.h
rename to love/src/jni/love/src/modules/filesystem/File.h
diff --git a/jni/love/src/modules/filesystem/FileData.cpp b/love/src/jni/love/src/modules/filesystem/FileData.cpp
similarity index 100%
rename from jni/love/src/modules/filesystem/FileData.cpp
rename to love/src/jni/love/src/modules/filesystem/FileData.cpp
diff --git a/jni/love/src/modules/filesystem/FileData.h b/love/src/jni/love/src/modules/filesystem/FileData.h
similarity index 100%
rename from jni/love/src/modules/filesystem/FileData.h
rename to love/src/jni/love/src/modules/filesystem/FileData.h
diff --git a/jni/love/src/modules/filesystem/Filesystem.cpp b/love/src/jni/love/src/modules/filesystem/Filesystem.cpp
similarity index 100%
rename from jni/love/src/modules/filesystem/Filesystem.cpp
rename to love/src/jni/love/src/modules/filesystem/Filesystem.cpp
diff --git a/jni/love/src/modules/filesystem/Filesystem.h b/love/src/jni/love/src/modules/filesystem/Filesystem.h
similarity index 100%
rename from jni/love/src/modules/filesystem/Filesystem.h
rename to love/src/jni/love/src/modules/filesystem/Filesystem.h
diff --git a/jni/love/src/modules/filesystem/physfs/File.cpp b/love/src/jni/love/src/modules/filesystem/physfs/File.cpp
similarity index 100%
rename from jni/love/src/modules/filesystem/physfs/File.cpp
rename to love/src/jni/love/src/modules/filesystem/physfs/File.cpp
diff --git a/jni/love/src/modules/filesystem/physfs/File.h b/love/src/jni/love/src/modules/filesystem/physfs/File.h
similarity index 100%
rename from jni/love/src/modules/filesystem/physfs/File.h
rename to love/src/jni/love/src/modules/filesystem/physfs/File.h
diff --git a/jni/love/src/modules/filesystem/physfs/Filesystem.cpp b/love/src/jni/love/src/modules/filesystem/physfs/Filesystem.cpp
similarity index 100%
rename from jni/love/src/modules/filesystem/physfs/Filesystem.cpp
rename to love/src/jni/love/src/modules/filesystem/physfs/Filesystem.cpp
diff --git a/jni/love/src/modules/filesystem/physfs/Filesystem.h b/love/src/jni/love/src/modules/filesystem/physfs/Filesystem.h
similarity index 100%
rename from jni/love/src/modules/filesystem/physfs/Filesystem.h
rename to love/src/jni/love/src/modules/filesystem/physfs/Filesystem.h
diff --git a/jni/love/src/modules/filesystem/wrap_DroppedFile.cpp b/love/src/jni/love/src/modules/filesystem/wrap_DroppedFile.cpp
similarity index 100%
rename from jni/love/src/modules/filesystem/wrap_DroppedFile.cpp
rename to love/src/jni/love/src/modules/filesystem/wrap_DroppedFile.cpp
diff --git a/jni/love/src/modules/filesystem/wrap_DroppedFile.h b/love/src/jni/love/src/modules/filesystem/wrap_DroppedFile.h
similarity index 100%
rename from jni/love/src/modules/filesystem/wrap_DroppedFile.h
rename to love/src/jni/love/src/modules/filesystem/wrap_DroppedFile.h
diff --git a/jni/love/src/modules/filesystem/wrap_File.cpp b/love/src/jni/love/src/modules/filesystem/wrap_File.cpp
similarity index 100%
rename from jni/love/src/modules/filesystem/wrap_File.cpp
rename to love/src/jni/love/src/modules/filesystem/wrap_File.cpp
diff --git a/jni/love/src/modules/filesystem/wrap_File.h b/love/src/jni/love/src/modules/filesystem/wrap_File.h
similarity index 100%
rename from jni/love/src/modules/filesystem/wrap_File.h
rename to love/src/jni/love/src/modules/filesystem/wrap_File.h
diff --git a/jni/love/src/modules/filesystem/wrap_FileData.cpp b/love/src/jni/love/src/modules/filesystem/wrap_FileData.cpp
similarity index 100%
rename from jni/love/src/modules/filesystem/wrap_FileData.cpp
rename to love/src/jni/love/src/modules/filesystem/wrap_FileData.cpp
diff --git a/jni/love/src/modules/filesystem/wrap_FileData.h b/love/src/jni/love/src/modules/filesystem/wrap_FileData.h
similarity index 100%
rename from jni/love/src/modules/filesystem/wrap_FileData.h
rename to love/src/jni/love/src/modules/filesystem/wrap_FileData.h
diff --git a/jni/love/src/modules/filesystem/wrap_Filesystem.cpp b/love/src/jni/love/src/modules/filesystem/wrap_Filesystem.cpp
similarity index 100%
rename from jni/love/src/modules/filesystem/wrap_Filesystem.cpp
rename to love/src/jni/love/src/modules/filesystem/wrap_Filesystem.cpp
diff --git a/jni/love/src/modules/filesystem/wrap_Filesystem.h b/love/src/jni/love/src/modules/filesystem/wrap_Filesystem.h
similarity index 100%
rename from jni/love/src/modules/filesystem/wrap_Filesystem.h
rename to love/src/jni/love/src/modules/filesystem/wrap_Filesystem.h
diff --git a/jni/love/src/modules/font/BMFontRasterizer.cpp b/love/src/jni/love/src/modules/font/BMFontRasterizer.cpp
similarity index 100%
rename from jni/love/src/modules/font/BMFontRasterizer.cpp
rename to love/src/jni/love/src/modules/font/BMFontRasterizer.cpp
diff --git a/jni/love/src/modules/font/BMFontRasterizer.h b/love/src/jni/love/src/modules/font/BMFontRasterizer.h
similarity index 100%
rename from jni/love/src/modules/font/BMFontRasterizer.h
rename to love/src/jni/love/src/modules/font/BMFontRasterizer.h
diff --git a/jni/love/src/modules/font/Font.cpp b/love/src/jni/love/src/modules/font/Font.cpp
similarity index 100%
rename from jni/love/src/modules/font/Font.cpp
rename to love/src/jni/love/src/modules/font/Font.cpp
diff --git a/jni/love/src/modules/font/Font.h b/love/src/jni/love/src/modules/font/Font.h
similarity index 100%
rename from jni/love/src/modules/font/Font.h
rename to love/src/jni/love/src/modules/font/Font.h
diff --git a/jni/love/src/modules/font/GlyphData.cpp b/love/src/jni/love/src/modules/font/GlyphData.cpp
similarity index 100%
rename from jni/love/src/modules/font/GlyphData.cpp
rename to love/src/jni/love/src/modules/font/GlyphData.cpp
diff --git a/jni/love/src/modules/font/GlyphData.h b/love/src/jni/love/src/modules/font/GlyphData.h
similarity index 100%
rename from jni/love/src/modules/font/GlyphData.h
rename to love/src/jni/love/src/modules/font/GlyphData.h
diff --git a/jni/love/src/modules/font/ImageRasterizer.cpp b/love/src/jni/love/src/modules/font/ImageRasterizer.cpp
similarity index 100%
rename from jni/love/src/modules/font/ImageRasterizer.cpp
rename to love/src/jni/love/src/modules/font/ImageRasterizer.cpp
diff --git a/jni/love/src/modules/font/ImageRasterizer.h b/love/src/jni/love/src/modules/font/ImageRasterizer.h
similarity index 100%
rename from jni/love/src/modules/font/ImageRasterizer.h
rename to love/src/jni/love/src/modules/font/ImageRasterizer.h
diff --git a/jni/love/src/modules/font/Rasterizer.cpp b/love/src/jni/love/src/modules/font/Rasterizer.cpp
similarity index 100%
rename from jni/love/src/modules/font/Rasterizer.cpp
rename to love/src/jni/love/src/modules/font/Rasterizer.cpp
diff --git a/jni/love/src/modules/font/Rasterizer.h b/love/src/jni/love/src/modules/font/Rasterizer.h
similarity index 100%
rename from jni/love/src/modules/font/Rasterizer.h
rename to love/src/jni/love/src/modules/font/Rasterizer.h
diff --git a/jni/love/src/modules/font/TrueTypeRasterizer.cpp b/love/src/jni/love/src/modules/font/TrueTypeRasterizer.cpp
similarity index 100%
rename from jni/love/src/modules/font/TrueTypeRasterizer.cpp
rename to love/src/jni/love/src/modules/font/TrueTypeRasterizer.cpp
diff --git a/jni/love/src/modules/font/TrueTypeRasterizer.h b/love/src/jni/love/src/modules/font/TrueTypeRasterizer.h
similarity index 100%
rename from jni/love/src/modules/font/TrueTypeRasterizer.h
rename to love/src/jni/love/src/modules/font/TrueTypeRasterizer.h
diff --git a/jni/love/src/modules/font/Vera.ttf.h b/love/src/jni/love/src/modules/font/Vera.ttf.h
similarity index 100%
rename from jni/love/src/modules/font/Vera.ttf.h
rename to love/src/jni/love/src/modules/font/Vera.ttf.h
diff --git a/jni/love/src/modules/font/freetype/Font.cpp b/love/src/jni/love/src/modules/font/freetype/Font.cpp
similarity index 100%
rename from jni/love/src/modules/font/freetype/Font.cpp
rename to love/src/jni/love/src/modules/font/freetype/Font.cpp
diff --git a/jni/love/src/modules/font/freetype/Font.h b/love/src/jni/love/src/modules/font/freetype/Font.h
similarity index 100%
rename from jni/love/src/modules/font/freetype/Font.h
rename to love/src/jni/love/src/modules/font/freetype/Font.h
diff --git a/jni/love/src/modules/font/freetype/TrueTypeRasterizer.cpp b/love/src/jni/love/src/modules/font/freetype/TrueTypeRasterizer.cpp
similarity index 100%
rename from jni/love/src/modules/font/freetype/TrueTypeRasterizer.cpp
rename to love/src/jni/love/src/modules/font/freetype/TrueTypeRasterizer.cpp
diff --git a/jni/love/src/modules/font/freetype/TrueTypeRasterizer.h b/love/src/jni/love/src/modules/font/freetype/TrueTypeRasterizer.h
similarity index 100%
rename from jni/love/src/modules/font/freetype/TrueTypeRasterizer.h
rename to love/src/jni/love/src/modules/font/freetype/TrueTypeRasterizer.h
diff --git a/jni/love/src/modules/font/wrap_Font.cpp b/love/src/jni/love/src/modules/font/wrap_Font.cpp
similarity index 100%
rename from jni/love/src/modules/font/wrap_Font.cpp
rename to love/src/jni/love/src/modules/font/wrap_Font.cpp
diff --git a/jni/love/src/modules/font/wrap_Font.h b/love/src/jni/love/src/modules/font/wrap_Font.h
similarity index 100%
rename from jni/love/src/modules/font/wrap_Font.h
rename to love/src/jni/love/src/modules/font/wrap_Font.h
diff --git a/jni/love/src/modules/font/wrap_GlyphData.cpp b/love/src/jni/love/src/modules/font/wrap_GlyphData.cpp
similarity index 100%
rename from jni/love/src/modules/font/wrap_GlyphData.cpp
rename to love/src/jni/love/src/modules/font/wrap_GlyphData.cpp
diff --git a/jni/love/src/modules/font/wrap_GlyphData.h b/love/src/jni/love/src/modules/font/wrap_GlyphData.h
similarity index 100%
rename from jni/love/src/modules/font/wrap_GlyphData.h
rename to love/src/jni/love/src/modules/font/wrap_GlyphData.h
diff --git a/jni/love/src/modules/font/wrap_Rasterizer.cpp b/love/src/jni/love/src/modules/font/wrap_Rasterizer.cpp
similarity index 100%
rename from jni/love/src/modules/font/wrap_Rasterizer.cpp
rename to love/src/jni/love/src/modules/font/wrap_Rasterizer.cpp
diff --git a/jni/love/src/modules/font/wrap_Rasterizer.h b/love/src/jni/love/src/modules/font/wrap_Rasterizer.h
similarity index 100%
rename from jni/love/src/modules/font/wrap_Rasterizer.h
rename to love/src/jni/love/src/modules/font/wrap_Rasterizer.h
diff --git a/jni/love/src/modules/graphics/Color.h b/love/src/jni/love/src/modules/graphics/Color.h
similarity index 100%
rename from jni/love/src/modules/graphics/Color.h
rename to love/src/jni/love/src/modules/graphics/Color.h
diff --git a/jni/love/src/modules/graphics/Drawable.h b/love/src/jni/love/src/modules/graphics/Drawable.h
similarity index 100%
rename from jni/love/src/modules/graphics/Drawable.h
rename to love/src/jni/love/src/modules/graphics/Drawable.h
diff --git a/jni/love/src/modules/graphics/Graphics.cpp b/love/src/jni/love/src/modules/graphics/Graphics.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/Graphics.cpp
rename to love/src/jni/love/src/modules/graphics/Graphics.cpp
diff --git a/jni/love/src/modules/graphics/Graphics.h b/love/src/jni/love/src/modules/graphics/Graphics.h
similarity index 100%
rename from jni/love/src/modules/graphics/Graphics.h
rename to love/src/jni/love/src/modules/graphics/Graphics.h
diff --git a/jni/love/src/modules/graphics/ParticleSystem.cpp b/love/src/jni/love/src/modules/graphics/ParticleSystem.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/ParticleSystem.cpp
rename to love/src/jni/love/src/modules/graphics/ParticleSystem.cpp
diff --git a/jni/love/src/modules/graphics/ParticleSystem.h b/love/src/jni/love/src/modules/graphics/ParticleSystem.h
similarity index 100%
rename from jni/love/src/modules/graphics/ParticleSystem.h
rename to love/src/jni/love/src/modules/graphics/ParticleSystem.h
diff --git a/jni/love/src/modules/graphics/Quad.cpp b/love/src/jni/love/src/modules/graphics/Quad.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/Quad.cpp
rename to love/src/jni/love/src/modules/graphics/Quad.cpp
diff --git a/jni/love/src/modules/graphics/Quad.h b/love/src/jni/love/src/modules/graphics/Quad.h
similarity index 100%
rename from jni/love/src/modules/graphics/Quad.h
rename to love/src/jni/love/src/modules/graphics/Quad.h
diff --git a/jni/love/src/modules/graphics/Texture.cpp b/love/src/jni/love/src/modules/graphics/Texture.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/Texture.cpp
rename to love/src/jni/love/src/modules/graphics/Texture.cpp
diff --git a/jni/love/src/modules/graphics/Texture.h b/love/src/jni/love/src/modules/graphics/Texture.h
similarity index 100%
rename from jni/love/src/modules/graphics/Texture.h
rename to love/src/jni/love/src/modules/graphics/Texture.h
diff --git a/jni/love/src/modules/graphics/Volatile.cpp b/love/src/jni/love/src/modules/graphics/Volatile.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/Volatile.cpp
rename to love/src/jni/love/src/modules/graphics/Volatile.cpp
diff --git a/jni/love/src/modules/graphics/Volatile.h b/love/src/jni/love/src/modules/graphics/Volatile.h
similarity index 100%
rename from jni/love/src/modules/graphics/Volatile.h
rename to love/src/jni/love/src/modules/graphics/Volatile.h
diff --git a/jni/love/src/modules/graphics/opengl/Canvas.cpp b/love/src/jni/love/src/modules/graphics/opengl/Canvas.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Canvas.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/Canvas.cpp
diff --git a/jni/love/src/modules/graphics/opengl/Canvas.h b/love/src/jni/love/src/modules/graphics/opengl/Canvas.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Canvas.h
rename to love/src/jni/love/src/modules/graphics/opengl/Canvas.h
diff --git a/jni/love/src/modules/graphics/opengl/Font.cpp b/love/src/jni/love/src/modules/graphics/opengl/Font.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Font.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/Font.cpp
diff --git a/jni/love/src/modules/graphics/opengl/Font.h b/love/src/jni/love/src/modules/graphics/opengl/Font.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Font.h
rename to love/src/jni/love/src/modules/graphics/opengl/Font.h
diff --git a/jni/love/src/modules/graphics/opengl/GLBuffer.cpp b/love/src/jni/love/src/modules/graphics/opengl/GLBuffer.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/GLBuffer.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/GLBuffer.cpp
diff --git a/jni/love/src/modules/graphics/opengl/GLBuffer.h b/love/src/jni/love/src/modules/graphics/opengl/GLBuffer.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/GLBuffer.h
rename to love/src/jni/love/src/modules/graphics/opengl/GLBuffer.h
diff --git a/jni/love/src/modules/graphics/opengl/Graphics.cpp b/love/src/jni/love/src/modules/graphics/opengl/Graphics.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Graphics.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/Graphics.cpp
diff --git a/jni/love/src/modules/graphics/opengl/Graphics.h b/love/src/jni/love/src/modules/graphics/opengl/Graphics.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Graphics.h
rename to love/src/jni/love/src/modules/graphics/opengl/Graphics.h
diff --git a/jni/love/src/modules/graphics/opengl/Image.cpp b/love/src/jni/love/src/modules/graphics/opengl/Image.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Image.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/Image.cpp
diff --git a/jni/love/src/modules/graphics/opengl/Image.h b/love/src/jni/love/src/modules/graphics/opengl/Image.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Image.h
rename to love/src/jni/love/src/modules/graphics/opengl/Image.h
diff --git a/jni/love/src/modules/graphics/opengl/Mesh.cpp b/love/src/jni/love/src/modules/graphics/opengl/Mesh.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Mesh.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/Mesh.cpp
diff --git a/jni/love/src/modules/graphics/opengl/Mesh.h b/love/src/jni/love/src/modules/graphics/opengl/Mesh.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Mesh.h
rename to love/src/jni/love/src/modules/graphics/opengl/Mesh.h
diff --git a/jni/love/src/modules/graphics/opengl/OpenGL.cpp b/love/src/jni/love/src/modules/graphics/opengl/OpenGL.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/OpenGL.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/OpenGL.cpp
diff --git a/jni/love/src/modules/graphics/opengl/OpenGL.h b/love/src/jni/love/src/modules/graphics/opengl/OpenGL.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/OpenGL.h
rename to love/src/jni/love/src/modules/graphics/opengl/OpenGL.h
diff --git a/jni/love/src/modules/graphics/opengl/ParticleSystem.cpp b/love/src/jni/love/src/modules/graphics/opengl/ParticleSystem.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/ParticleSystem.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/ParticleSystem.cpp
diff --git a/jni/love/src/modules/graphics/opengl/ParticleSystem.h b/love/src/jni/love/src/modules/graphics/opengl/ParticleSystem.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/ParticleSystem.h
rename to love/src/jni/love/src/modules/graphics/opengl/ParticleSystem.h
diff --git a/jni/love/src/modules/graphics/opengl/Polyline.cpp b/love/src/jni/love/src/modules/graphics/opengl/Polyline.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Polyline.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/Polyline.cpp
diff --git a/jni/love/src/modules/graphics/opengl/Polyline.h b/love/src/jni/love/src/modules/graphics/opengl/Polyline.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Polyline.h
rename to love/src/jni/love/src/modules/graphics/opengl/Polyline.h
diff --git a/jni/love/src/modules/graphics/opengl/Shader.cpp b/love/src/jni/love/src/modules/graphics/opengl/Shader.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Shader.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/Shader.cpp
diff --git a/jni/love/src/modules/graphics/opengl/Shader.h b/love/src/jni/love/src/modules/graphics/opengl/Shader.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Shader.h
rename to love/src/jni/love/src/modules/graphics/opengl/Shader.h
diff --git a/jni/love/src/modules/graphics/opengl/SpriteBatch.cpp b/love/src/jni/love/src/modules/graphics/opengl/SpriteBatch.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/SpriteBatch.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/SpriteBatch.cpp
diff --git a/jni/love/src/modules/graphics/opengl/SpriteBatch.h b/love/src/jni/love/src/modules/graphics/opengl/SpriteBatch.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/SpriteBatch.h
rename to love/src/jni/love/src/modules/graphics/opengl/SpriteBatch.h
diff --git a/jni/love/src/modules/graphics/opengl/Text.cpp b/love/src/jni/love/src/modules/graphics/opengl/Text.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Text.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/Text.cpp
diff --git a/jni/love/src/modules/graphics/opengl/Text.h b/love/src/jni/love/src/modules/graphics/opengl/Text.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Text.h
rename to love/src/jni/love/src/modules/graphics/opengl/Text.h
diff --git a/jni/love/src/modules/graphics/opengl/Video.cpp b/love/src/jni/love/src/modules/graphics/opengl/Video.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Video.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/Video.cpp
diff --git a/jni/love/src/modules/graphics/opengl/Video.h b/love/src/jni/love/src/modules/graphics/opengl/Video.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/Video.h
rename to love/src/jni/love/src/modules/graphics/opengl/Video.h
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Canvas.cpp b/love/src/jni/love/src/modules/graphics/opengl/wrap_Canvas.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Canvas.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Canvas.cpp
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Canvas.h b/love/src/jni/love/src/modules/graphics/opengl/wrap_Canvas.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Canvas.h
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Canvas.h
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Font.cpp b/love/src/jni/love/src/modules/graphics/opengl/wrap_Font.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Font.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Font.cpp
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Font.h b/love/src/jni/love/src/modules/graphics/opengl/wrap_Font.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Font.h
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Font.h
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Graphics.cpp b/love/src/jni/love/src/modules/graphics/opengl/wrap_Graphics.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Graphics.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Graphics.cpp
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Graphics.h b/love/src/jni/love/src/modules/graphics/opengl/wrap_Graphics.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Graphics.h
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Graphics.h
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Graphics.lua b/love/src/jni/love/src/modules/graphics/opengl/wrap_Graphics.lua
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Graphics.lua
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Graphics.lua
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Image.cpp b/love/src/jni/love/src/modules/graphics/opengl/wrap_Image.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Image.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Image.cpp
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Image.h b/love/src/jni/love/src/modules/graphics/opengl/wrap_Image.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Image.h
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Image.h
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Mesh.cpp b/love/src/jni/love/src/modules/graphics/opengl/wrap_Mesh.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Mesh.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Mesh.cpp
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Mesh.h b/love/src/jni/love/src/modules/graphics/opengl/wrap_Mesh.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Mesh.h
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Mesh.h
diff --git a/jni/love/src/modules/graphics/opengl/wrap_ParticleSystem.cpp b/love/src/jni/love/src/modules/graphics/opengl/wrap_ParticleSystem.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_ParticleSystem.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_ParticleSystem.cpp
diff --git a/jni/love/src/modules/graphics/opengl/wrap_ParticleSystem.h b/love/src/jni/love/src/modules/graphics/opengl/wrap_ParticleSystem.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_ParticleSystem.h
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_ParticleSystem.h
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Shader.cpp b/love/src/jni/love/src/modules/graphics/opengl/wrap_Shader.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Shader.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Shader.cpp
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Shader.h b/love/src/jni/love/src/modules/graphics/opengl/wrap_Shader.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Shader.h
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Shader.h
diff --git a/jni/love/src/modules/graphics/opengl/wrap_SpriteBatch.cpp b/love/src/jni/love/src/modules/graphics/opengl/wrap_SpriteBatch.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_SpriteBatch.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_SpriteBatch.cpp
diff --git a/jni/love/src/modules/graphics/opengl/wrap_SpriteBatch.h b/love/src/jni/love/src/modules/graphics/opengl/wrap_SpriteBatch.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_SpriteBatch.h
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_SpriteBatch.h
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Text.cpp b/love/src/jni/love/src/modules/graphics/opengl/wrap_Text.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Text.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Text.cpp
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Text.h b/love/src/jni/love/src/modules/graphics/opengl/wrap_Text.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Text.h
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Text.h
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Video.cpp b/love/src/jni/love/src/modules/graphics/opengl/wrap_Video.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Video.cpp
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Video.cpp
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Video.h b/love/src/jni/love/src/modules/graphics/opengl/wrap_Video.h
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Video.h
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Video.h
diff --git a/jni/love/src/modules/graphics/opengl/wrap_Video.lua b/love/src/jni/love/src/modules/graphics/opengl/wrap_Video.lua
similarity index 100%
rename from jni/love/src/modules/graphics/opengl/wrap_Video.lua
rename to love/src/jni/love/src/modules/graphics/opengl/wrap_Video.lua
diff --git a/jni/love/src/modules/graphics/wrap_Quad.cpp b/love/src/jni/love/src/modules/graphics/wrap_Quad.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/wrap_Quad.cpp
rename to love/src/jni/love/src/modules/graphics/wrap_Quad.cpp
diff --git a/jni/love/src/modules/graphics/wrap_Quad.h b/love/src/jni/love/src/modules/graphics/wrap_Quad.h
similarity index 100%
rename from jni/love/src/modules/graphics/wrap_Quad.h
rename to love/src/jni/love/src/modules/graphics/wrap_Quad.h
diff --git a/jni/love/src/modules/graphics/wrap_Texture.cpp b/love/src/jni/love/src/modules/graphics/wrap_Texture.cpp
similarity index 100%
rename from jni/love/src/modules/graphics/wrap_Texture.cpp
rename to love/src/jni/love/src/modules/graphics/wrap_Texture.cpp
diff --git a/jni/love/src/modules/graphics/wrap_Texture.h b/love/src/jni/love/src/modules/graphics/wrap_Texture.h
similarity index 100%
rename from jni/love/src/modules/graphics/wrap_Texture.h
rename to love/src/jni/love/src/modules/graphics/wrap_Texture.h
diff --git a/jni/love/src/modules/image/CompressedImageData.cpp b/love/src/jni/love/src/modules/image/CompressedImageData.cpp
similarity index 100%
rename from jni/love/src/modules/image/CompressedImageData.cpp
rename to love/src/jni/love/src/modules/image/CompressedImageData.cpp
diff --git a/jni/love/src/modules/image/CompressedImageData.h b/love/src/jni/love/src/modules/image/CompressedImageData.h
similarity index 100%
rename from jni/love/src/modules/image/CompressedImageData.h
rename to love/src/jni/love/src/modules/image/CompressedImageData.h
diff --git a/jni/love/src/modules/image/Image.h b/love/src/jni/love/src/modules/image/Image.h
similarity index 100%
rename from jni/love/src/modules/image/Image.h
rename to love/src/jni/love/src/modules/image/Image.h
diff --git a/jni/love/src/modules/image/ImageData.cpp b/love/src/jni/love/src/modules/image/ImageData.cpp
similarity index 100%
rename from jni/love/src/modules/image/ImageData.cpp
rename to love/src/jni/love/src/modules/image/ImageData.cpp
diff --git a/jni/love/src/modules/image/ImageData.h b/love/src/jni/love/src/modules/image/ImageData.h
similarity index 100%
rename from jni/love/src/modules/image/ImageData.h
rename to love/src/jni/love/src/modules/image/ImageData.h
diff --git a/jni/love/src/modules/image/magpie/ASTCHandler.cpp b/love/src/jni/love/src/modules/image/magpie/ASTCHandler.cpp
similarity index 100%
rename from jni/love/src/modules/image/magpie/ASTCHandler.cpp
rename to love/src/jni/love/src/modules/image/magpie/ASTCHandler.cpp
diff --git a/jni/love/src/modules/image/magpie/ASTCHandler.h b/love/src/jni/love/src/modules/image/magpie/ASTCHandler.h
similarity index 100%
rename from jni/love/src/modules/image/magpie/ASTCHandler.h
rename to love/src/jni/love/src/modules/image/magpie/ASTCHandler.h
diff --git a/jni/love/src/modules/image/magpie/CompressedFormatHandler.h b/love/src/jni/love/src/modules/image/magpie/CompressedFormatHandler.h
similarity index 100%
rename from jni/love/src/modules/image/magpie/CompressedFormatHandler.h
rename to love/src/jni/love/src/modules/image/magpie/CompressedFormatHandler.h
diff --git a/jni/love/src/modules/image/magpie/CompressedImageData.cpp b/love/src/jni/love/src/modules/image/magpie/CompressedImageData.cpp
similarity index 100%
rename from jni/love/src/modules/image/magpie/CompressedImageData.cpp
rename to love/src/jni/love/src/modules/image/magpie/CompressedImageData.cpp
diff --git a/jni/love/src/modules/image/magpie/CompressedImageData.h b/love/src/jni/love/src/modules/image/magpie/CompressedImageData.h
similarity index 100%
rename from jni/love/src/modules/image/magpie/CompressedImageData.h
rename to love/src/jni/love/src/modules/image/magpie/CompressedImageData.h
diff --git a/jni/love/src/modules/image/magpie/FormatHandler.cpp b/love/src/jni/love/src/modules/image/magpie/FormatHandler.cpp
similarity index 100%
rename from jni/love/src/modules/image/magpie/FormatHandler.cpp
rename to love/src/jni/love/src/modules/image/magpie/FormatHandler.cpp
diff --git a/jni/love/src/modules/image/magpie/FormatHandler.h b/love/src/jni/love/src/modules/image/magpie/FormatHandler.h
similarity index 100%
rename from jni/love/src/modules/image/magpie/FormatHandler.h
rename to love/src/jni/love/src/modules/image/magpie/FormatHandler.h
diff --git a/jni/love/src/modules/image/magpie/Image.cpp b/love/src/jni/love/src/modules/image/magpie/Image.cpp
similarity index 100%
rename from jni/love/src/modules/image/magpie/Image.cpp
rename to love/src/jni/love/src/modules/image/magpie/Image.cpp
diff --git a/jni/love/src/modules/image/magpie/Image.h b/love/src/jni/love/src/modules/image/magpie/Image.h
similarity index 100%
rename from jni/love/src/modules/image/magpie/Image.h
rename to love/src/jni/love/src/modules/image/magpie/Image.h
diff --git a/jni/love/src/modules/image/magpie/ImageData.cpp b/love/src/jni/love/src/modules/image/magpie/ImageData.cpp
similarity index 100%
rename from jni/love/src/modules/image/magpie/ImageData.cpp
rename to love/src/jni/love/src/modules/image/magpie/ImageData.cpp
diff --git a/jni/love/src/modules/image/magpie/ImageData.h b/love/src/jni/love/src/modules/image/magpie/ImageData.h
similarity index 100%
rename from jni/love/src/modules/image/magpie/ImageData.h
rename to love/src/jni/love/src/modules/image/magpie/ImageData.h
diff --git a/jni/love/src/modules/image/magpie/KTXHandler.cpp b/love/src/jni/love/src/modules/image/magpie/KTXHandler.cpp
similarity index 100%
rename from jni/love/src/modules/image/magpie/KTXHandler.cpp
rename to love/src/jni/love/src/modules/image/magpie/KTXHandler.cpp
diff --git a/jni/love/src/modules/image/magpie/KTXHandler.h b/love/src/jni/love/src/modules/image/magpie/KTXHandler.h
similarity index 100%
rename from jni/love/src/modules/image/magpie/KTXHandler.h
rename to love/src/jni/love/src/modules/image/magpie/KTXHandler.h
diff --git a/jni/love/src/modules/image/magpie/PKMHandler.cpp b/love/src/jni/love/src/modules/image/magpie/PKMHandler.cpp
similarity index 100%
rename from jni/love/src/modules/image/magpie/PKMHandler.cpp
rename to love/src/jni/love/src/modules/image/magpie/PKMHandler.cpp
diff --git a/jni/love/src/modules/image/magpie/PKMHandler.h b/love/src/jni/love/src/modules/image/magpie/PKMHandler.h
similarity index 100%
rename from jni/love/src/modules/image/magpie/PKMHandler.h
rename to love/src/jni/love/src/modules/image/magpie/PKMHandler.h
diff --git a/jni/love/src/modules/image/magpie/PNGHandler.cpp b/love/src/jni/love/src/modules/image/magpie/PNGHandler.cpp
similarity index 100%
rename from jni/love/src/modules/image/magpie/PNGHandler.cpp
rename to love/src/jni/love/src/modules/image/magpie/PNGHandler.cpp
diff --git a/jni/love/src/modules/image/magpie/PNGHandler.h b/love/src/jni/love/src/modules/image/magpie/PNGHandler.h
similarity index 100%
rename from jni/love/src/modules/image/magpie/PNGHandler.h
rename to love/src/jni/love/src/modules/image/magpie/PNGHandler.h
diff --git a/jni/love/src/modules/image/magpie/PVRHandler.cpp b/love/src/jni/love/src/modules/image/magpie/PVRHandler.cpp
similarity index 100%
rename from jni/love/src/modules/image/magpie/PVRHandler.cpp
rename to love/src/jni/love/src/modules/image/magpie/PVRHandler.cpp
diff --git a/jni/love/src/modules/image/magpie/PVRHandler.h b/love/src/jni/love/src/modules/image/magpie/PVRHandler.h
similarity index 100%
rename from jni/love/src/modules/image/magpie/PVRHandler.h
rename to love/src/jni/love/src/modules/image/magpie/PVRHandler.h
diff --git a/jni/love/src/modules/image/magpie/STBHandler.cpp b/love/src/jni/love/src/modules/image/magpie/STBHandler.cpp
similarity index 100%
rename from jni/love/src/modules/image/magpie/STBHandler.cpp
rename to love/src/jni/love/src/modules/image/magpie/STBHandler.cpp
diff --git a/jni/love/src/modules/image/magpie/STBHandler.h b/love/src/jni/love/src/modules/image/magpie/STBHandler.h
similarity index 100%
rename from jni/love/src/modules/image/magpie/STBHandler.h
rename to love/src/jni/love/src/modules/image/magpie/STBHandler.h
diff --git a/jni/love/src/modules/image/magpie/ddsHandler.cpp b/love/src/jni/love/src/modules/image/magpie/ddsHandler.cpp
similarity index 100%
rename from jni/love/src/modules/image/magpie/ddsHandler.cpp
rename to love/src/jni/love/src/modules/image/magpie/ddsHandler.cpp
diff --git a/jni/love/src/modules/image/magpie/ddsHandler.h b/love/src/jni/love/src/modules/image/magpie/ddsHandler.h
similarity index 100%
rename from jni/love/src/modules/image/magpie/ddsHandler.h
rename to love/src/jni/love/src/modules/image/magpie/ddsHandler.h
diff --git a/jni/love/src/modules/image/wrap_CompressedImageData.cpp b/love/src/jni/love/src/modules/image/wrap_CompressedImageData.cpp
similarity index 100%
rename from jni/love/src/modules/image/wrap_CompressedImageData.cpp
rename to love/src/jni/love/src/modules/image/wrap_CompressedImageData.cpp
diff --git a/jni/love/src/modules/image/wrap_CompressedImageData.h b/love/src/jni/love/src/modules/image/wrap_CompressedImageData.h
similarity index 100%
rename from jni/love/src/modules/image/wrap_CompressedImageData.h
rename to love/src/jni/love/src/modules/image/wrap_CompressedImageData.h
diff --git a/jni/love/src/modules/image/wrap_Image.cpp b/love/src/jni/love/src/modules/image/wrap_Image.cpp
similarity index 100%
rename from jni/love/src/modules/image/wrap_Image.cpp
rename to love/src/jni/love/src/modules/image/wrap_Image.cpp
diff --git a/jni/love/src/modules/image/wrap_Image.h b/love/src/jni/love/src/modules/image/wrap_Image.h
similarity index 100%
rename from jni/love/src/modules/image/wrap_Image.h
rename to love/src/jni/love/src/modules/image/wrap_Image.h
diff --git a/jni/love/src/modules/image/wrap_ImageData.cpp b/love/src/jni/love/src/modules/image/wrap_ImageData.cpp
similarity index 100%
rename from jni/love/src/modules/image/wrap_ImageData.cpp
rename to love/src/jni/love/src/modules/image/wrap_ImageData.cpp
diff --git a/jni/love/src/modules/image/wrap_ImageData.h b/love/src/jni/love/src/modules/image/wrap_ImageData.h
similarity index 100%
rename from jni/love/src/modules/image/wrap_ImageData.h
rename to love/src/jni/love/src/modules/image/wrap_ImageData.h
diff --git a/jni/love/src/modules/image/wrap_ImageData.lua b/love/src/jni/love/src/modules/image/wrap_ImageData.lua
similarity index 100%
rename from jni/love/src/modules/image/wrap_ImageData.lua
rename to love/src/jni/love/src/modules/image/wrap_ImageData.lua
diff --git a/jni/love/src/modules/joystick/Joystick.cpp b/love/src/jni/love/src/modules/joystick/Joystick.cpp
similarity index 100%
rename from jni/love/src/modules/joystick/Joystick.cpp
rename to love/src/jni/love/src/modules/joystick/Joystick.cpp
diff --git a/jni/love/src/modules/joystick/Joystick.h b/love/src/jni/love/src/modules/joystick/Joystick.h
similarity index 100%
rename from jni/love/src/modules/joystick/Joystick.h
rename to love/src/jni/love/src/modules/joystick/Joystick.h
diff --git a/jni/love/src/modules/joystick/JoystickModule.h b/love/src/jni/love/src/modules/joystick/JoystickModule.h
similarity index 100%
rename from jni/love/src/modules/joystick/JoystickModule.h
rename to love/src/jni/love/src/modules/joystick/JoystickModule.h
diff --git a/jni/love/src/modules/joystick/sdl/Joystick.cpp b/love/src/jni/love/src/modules/joystick/sdl/Joystick.cpp
similarity index 100%
rename from jni/love/src/modules/joystick/sdl/Joystick.cpp
rename to love/src/jni/love/src/modules/joystick/sdl/Joystick.cpp
diff --git a/jni/love/src/modules/joystick/sdl/Joystick.h b/love/src/jni/love/src/modules/joystick/sdl/Joystick.h
similarity index 100%
rename from jni/love/src/modules/joystick/sdl/Joystick.h
rename to love/src/jni/love/src/modules/joystick/sdl/Joystick.h
diff --git a/jni/love/src/modules/joystick/sdl/JoystickModule.cpp b/love/src/jni/love/src/modules/joystick/sdl/JoystickModule.cpp
similarity index 100%
rename from jni/love/src/modules/joystick/sdl/JoystickModule.cpp
rename to love/src/jni/love/src/modules/joystick/sdl/JoystickModule.cpp
diff --git a/jni/love/src/modules/joystick/sdl/JoystickModule.h b/love/src/jni/love/src/modules/joystick/sdl/JoystickModule.h
similarity index 100%
rename from jni/love/src/modules/joystick/sdl/JoystickModule.h
rename to love/src/jni/love/src/modules/joystick/sdl/JoystickModule.h
diff --git a/jni/love/src/modules/joystick/wrap_Joystick.cpp b/love/src/jni/love/src/modules/joystick/wrap_Joystick.cpp
similarity index 100%
rename from jni/love/src/modules/joystick/wrap_Joystick.cpp
rename to love/src/jni/love/src/modules/joystick/wrap_Joystick.cpp
diff --git a/jni/love/src/modules/joystick/wrap_Joystick.h b/love/src/jni/love/src/modules/joystick/wrap_Joystick.h
similarity index 100%
rename from jni/love/src/modules/joystick/wrap_Joystick.h
rename to love/src/jni/love/src/modules/joystick/wrap_Joystick.h
diff --git a/jni/love/src/modules/joystick/wrap_JoystickModule.cpp b/love/src/jni/love/src/modules/joystick/wrap_JoystickModule.cpp
similarity index 100%
rename from jni/love/src/modules/joystick/wrap_JoystickModule.cpp
rename to love/src/jni/love/src/modules/joystick/wrap_JoystickModule.cpp
diff --git a/jni/love/src/modules/joystick/wrap_JoystickModule.h b/love/src/jni/love/src/modules/joystick/wrap_JoystickModule.h
similarity index 100%
rename from jni/love/src/modules/joystick/wrap_JoystickModule.h
rename to love/src/jni/love/src/modules/joystick/wrap_JoystickModule.h
diff --git a/jni/love/src/modules/keyboard/Keyboard.cpp b/love/src/jni/love/src/modules/keyboard/Keyboard.cpp
similarity index 100%
rename from jni/love/src/modules/keyboard/Keyboard.cpp
rename to love/src/jni/love/src/modules/keyboard/Keyboard.cpp
diff --git a/jni/love/src/modules/keyboard/Keyboard.h b/love/src/jni/love/src/modules/keyboard/Keyboard.h
similarity index 100%
rename from jni/love/src/modules/keyboard/Keyboard.h
rename to love/src/jni/love/src/modules/keyboard/Keyboard.h
diff --git a/jni/love/src/modules/keyboard/sdl/Keyboard.cpp b/love/src/jni/love/src/modules/keyboard/sdl/Keyboard.cpp
similarity index 100%
rename from jni/love/src/modules/keyboard/sdl/Keyboard.cpp
rename to love/src/jni/love/src/modules/keyboard/sdl/Keyboard.cpp
diff --git a/jni/love/src/modules/keyboard/sdl/Keyboard.h b/love/src/jni/love/src/modules/keyboard/sdl/Keyboard.h
similarity index 100%
rename from jni/love/src/modules/keyboard/sdl/Keyboard.h
rename to love/src/jni/love/src/modules/keyboard/sdl/Keyboard.h
diff --git a/jni/love/src/modules/keyboard/wrap_Keyboard.cpp b/love/src/jni/love/src/modules/keyboard/wrap_Keyboard.cpp
similarity index 100%
rename from jni/love/src/modules/keyboard/wrap_Keyboard.cpp
rename to love/src/jni/love/src/modules/keyboard/wrap_Keyboard.cpp
diff --git a/jni/love/src/modules/keyboard/wrap_Keyboard.h b/love/src/jni/love/src/modules/keyboard/wrap_Keyboard.h
similarity index 100%
rename from jni/love/src/modules/keyboard/wrap_Keyboard.h
rename to love/src/jni/love/src/modules/keyboard/wrap_Keyboard.h
diff --git a/jni/love/src/modules/love/love.cpp b/love/src/jni/love/src/modules/love/love.cpp
similarity index 100%
rename from jni/love/src/modules/love/love.cpp
rename to love/src/jni/love/src/modules/love/love.cpp
diff --git a/jni/love/src/modules/love/love.h b/love/src/jni/love/src/modules/love/love.h
similarity index 100%
rename from jni/love/src/modules/love/love.h
rename to love/src/jni/love/src/modules/love/love.h
diff --git a/jni/love/src/modules/math/BezierCurve.cpp b/love/src/jni/love/src/modules/math/BezierCurve.cpp
similarity index 100%
rename from jni/love/src/modules/math/BezierCurve.cpp
rename to love/src/jni/love/src/modules/math/BezierCurve.cpp
diff --git a/jni/love/src/modules/math/BezierCurve.h b/love/src/jni/love/src/modules/math/BezierCurve.h
similarity index 100%
rename from jni/love/src/modules/math/BezierCurve.h
rename to love/src/jni/love/src/modules/math/BezierCurve.h
diff --git a/jni/love/src/modules/math/CompressedData.cpp b/love/src/jni/love/src/modules/math/CompressedData.cpp
similarity index 100%
rename from jni/love/src/modules/math/CompressedData.cpp
rename to love/src/jni/love/src/modules/math/CompressedData.cpp
diff --git a/jni/love/src/modules/math/CompressedData.h b/love/src/jni/love/src/modules/math/CompressedData.h
similarity index 100%
rename from jni/love/src/modules/math/CompressedData.h
rename to love/src/jni/love/src/modules/math/CompressedData.h
diff --git a/jni/love/src/modules/math/Compressor.cpp b/love/src/jni/love/src/modules/math/Compressor.cpp
similarity index 100%
rename from jni/love/src/modules/math/Compressor.cpp
rename to love/src/jni/love/src/modules/math/Compressor.cpp
diff --git a/jni/love/src/modules/math/Compressor.h b/love/src/jni/love/src/modules/math/Compressor.h
similarity index 100%
rename from jni/love/src/modules/math/Compressor.h
rename to love/src/jni/love/src/modules/math/Compressor.h
diff --git a/jni/love/src/modules/math/MathModule.cpp b/love/src/jni/love/src/modules/math/MathModule.cpp
similarity index 100%
rename from jni/love/src/modules/math/MathModule.cpp
rename to love/src/jni/love/src/modules/math/MathModule.cpp
diff --git a/jni/love/src/modules/math/MathModule.h b/love/src/jni/love/src/modules/math/MathModule.h
similarity index 100%
rename from jni/love/src/modules/math/MathModule.h
rename to love/src/jni/love/src/modules/math/MathModule.h
diff --git a/jni/love/src/modules/math/RandomGenerator.cpp b/love/src/jni/love/src/modules/math/RandomGenerator.cpp
similarity index 100%
rename from jni/love/src/modules/math/RandomGenerator.cpp
rename to love/src/jni/love/src/modules/math/RandomGenerator.cpp
diff --git a/jni/love/src/modules/math/RandomGenerator.h b/love/src/jni/love/src/modules/math/RandomGenerator.h
similarity index 100%
rename from jni/love/src/modules/math/RandomGenerator.h
rename to love/src/jni/love/src/modules/math/RandomGenerator.h
diff --git a/jni/love/src/modules/math/wrap_BezierCurve.cpp b/love/src/jni/love/src/modules/math/wrap_BezierCurve.cpp
similarity index 100%
rename from jni/love/src/modules/math/wrap_BezierCurve.cpp
rename to love/src/jni/love/src/modules/math/wrap_BezierCurve.cpp
diff --git a/jni/love/src/modules/math/wrap_BezierCurve.h b/love/src/jni/love/src/modules/math/wrap_BezierCurve.h
similarity index 100%
rename from jni/love/src/modules/math/wrap_BezierCurve.h
rename to love/src/jni/love/src/modules/math/wrap_BezierCurve.h
diff --git a/jni/love/src/modules/math/wrap_CompressedData.cpp b/love/src/jni/love/src/modules/math/wrap_CompressedData.cpp
similarity index 100%
rename from jni/love/src/modules/math/wrap_CompressedData.cpp
rename to love/src/jni/love/src/modules/math/wrap_CompressedData.cpp
diff --git a/jni/love/src/modules/math/wrap_CompressedData.h b/love/src/jni/love/src/modules/math/wrap_CompressedData.h
similarity index 100%
rename from jni/love/src/modules/math/wrap_CompressedData.h
rename to love/src/jni/love/src/modules/math/wrap_CompressedData.h
diff --git a/jni/love/src/modules/math/wrap_Math.cpp b/love/src/jni/love/src/modules/math/wrap_Math.cpp
similarity index 100%
rename from jni/love/src/modules/math/wrap_Math.cpp
rename to love/src/jni/love/src/modules/math/wrap_Math.cpp
diff --git a/jni/love/src/modules/math/wrap_Math.h b/love/src/jni/love/src/modules/math/wrap_Math.h
similarity index 100%
rename from jni/love/src/modules/math/wrap_Math.h
rename to love/src/jni/love/src/modules/math/wrap_Math.h
diff --git a/jni/love/src/modules/math/wrap_Math.lua b/love/src/jni/love/src/modules/math/wrap_Math.lua
similarity index 100%
rename from jni/love/src/modules/math/wrap_Math.lua
rename to love/src/jni/love/src/modules/math/wrap_Math.lua
diff --git a/jni/love/src/modules/math/wrap_RandomGenerator.cpp b/love/src/jni/love/src/modules/math/wrap_RandomGenerator.cpp
similarity index 100%
rename from jni/love/src/modules/math/wrap_RandomGenerator.cpp
rename to love/src/jni/love/src/modules/math/wrap_RandomGenerator.cpp
diff --git a/jni/love/src/modules/math/wrap_RandomGenerator.h b/love/src/jni/love/src/modules/math/wrap_RandomGenerator.h
similarity index 100%
rename from jni/love/src/modules/math/wrap_RandomGenerator.h
rename to love/src/jni/love/src/modules/math/wrap_RandomGenerator.h
diff --git a/jni/love/src/modules/math/wrap_RandomGenerator.lua b/love/src/jni/love/src/modules/math/wrap_RandomGenerator.lua
similarity index 100%
rename from jni/love/src/modules/math/wrap_RandomGenerator.lua
rename to love/src/jni/love/src/modules/math/wrap_RandomGenerator.lua
diff --git a/jni/love/src/modules/mouse/Cursor.cpp b/love/src/jni/love/src/modules/mouse/Cursor.cpp
similarity index 100%
rename from jni/love/src/modules/mouse/Cursor.cpp
rename to love/src/jni/love/src/modules/mouse/Cursor.cpp
diff --git a/jni/love/src/modules/mouse/Cursor.h b/love/src/jni/love/src/modules/mouse/Cursor.h
similarity index 100%
rename from jni/love/src/modules/mouse/Cursor.h
rename to love/src/jni/love/src/modules/mouse/Cursor.h
diff --git a/jni/love/src/modules/mouse/Mouse.h b/love/src/jni/love/src/modules/mouse/Mouse.h
similarity index 100%
rename from jni/love/src/modules/mouse/Mouse.h
rename to love/src/jni/love/src/modules/mouse/Mouse.h
diff --git a/jni/love/src/modules/mouse/sdl/Cursor.cpp b/love/src/jni/love/src/modules/mouse/sdl/Cursor.cpp
similarity index 100%
rename from jni/love/src/modules/mouse/sdl/Cursor.cpp
rename to love/src/jni/love/src/modules/mouse/sdl/Cursor.cpp
diff --git a/jni/love/src/modules/mouse/sdl/Cursor.h b/love/src/jni/love/src/modules/mouse/sdl/Cursor.h
similarity index 100%
rename from jni/love/src/modules/mouse/sdl/Cursor.h
rename to love/src/jni/love/src/modules/mouse/sdl/Cursor.h
diff --git a/jni/love/src/modules/mouse/sdl/Mouse.cpp b/love/src/jni/love/src/modules/mouse/sdl/Mouse.cpp
similarity index 100%
rename from jni/love/src/modules/mouse/sdl/Mouse.cpp
rename to love/src/jni/love/src/modules/mouse/sdl/Mouse.cpp
diff --git a/jni/love/src/modules/mouse/sdl/Mouse.h b/love/src/jni/love/src/modules/mouse/sdl/Mouse.h
similarity index 100%
rename from jni/love/src/modules/mouse/sdl/Mouse.h
rename to love/src/jni/love/src/modules/mouse/sdl/Mouse.h
diff --git a/jni/love/src/modules/mouse/wrap_Cursor.cpp b/love/src/jni/love/src/modules/mouse/wrap_Cursor.cpp
similarity index 100%
rename from jni/love/src/modules/mouse/wrap_Cursor.cpp
rename to love/src/jni/love/src/modules/mouse/wrap_Cursor.cpp
diff --git a/jni/love/src/modules/mouse/wrap_Cursor.h b/love/src/jni/love/src/modules/mouse/wrap_Cursor.h
similarity index 100%
rename from jni/love/src/modules/mouse/wrap_Cursor.h
rename to love/src/jni/love/src/modules/mouse/wrap_Cursor.h
diff --git a/jni/love/src/modules/mouse/wrap_Mouse.cpp b/love/src/jni/love/src/modules/mouse/wrap_Mouse.cpp
similarity index 100%
rename from jni/love/src/modules/mouse/wrap_Mouse.cpp
rename to love/src/jni/love/src/modules/mouse/wrap_Mouse.cpp
diff --git a/jni/love/src/modules/mouse/wrap_Mouse.h b/love/src/jni/love/src/modules/mouse/wrap_Mouse.h
similarity index 100%
rename from jni/love/src/modules/mouse/wrap_Mouse.h
rename to love/src/jni/love/src/modules/mouse/wrap_Mouse.h
diff --git a/jni/love/src/modules/physics/Body.cpp b/love/src/jni/love/src/modules/physics/Body.cpp
similarity index 100%
rename from jni/love/src/modules/physics/Body.cpp
rename to love/src/jni/love/src/modules/physics/Body.cpp
diff --git a/jni/love/src/modules/physics/Body.h b/love/src/jni/love/src/modules/physics/Body.h
similarity index 100%
rename from jni/love/src/modules/physics/Body.h
rename to love/src/jni/love/src/modules/physics/Body.h
diff --git a/jni/love/src/modules/physics/Joint.cpp b/love/src/jni/love/src/modules/physics/Joint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/Joint.cpp
rename to love/src/jni/love/src/modules/physics/Joint.cpp
diff --git a/jni/love/src/modules/physics/Joint.h b/love/src/jni/love/src/modules/physics/Joint.h
similarity index 100%
rename from jni/love/src/modules/physics/Joint.h
rename to love/src/jni/love/src/modules/physics/Joint.h
diff --git a/jni/love/src/modules/physics/Shape.cpp b/love/src/jni/love/src/modules/physics/Shape.cpp
similarity index 100%
rename from jni/love/src/modules/physics/Shape.cpp
rename to love/src/jni/love/src/modules/physics/Shape.cpp
diff --git a/jni/love/src/modules/physics/Shape.h b/love/src/jni/love/src/modules/physics/Shape.h
similarity index 100%
rename from jni/love/src/modules/physics/Shape.h
rename to love/src/jni/love/src/modules/physics/Shape.h
diff --git a/jni/love/src/modules/physics/box2d/Body.cpp b/love/src/jni/love/src/modules/physics/box2d/Body.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/Body.cpp
rename to love/src/jni/love/src/modules/physics/box2d/Body.cpp
diff --git a/jni/love/src/modules/physics/box2d/Body.h b/love/src/jni/love/src/modules/physics/box2d/Body.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/Body.h
rename to love/src/jni/love/src/modules/physics/box2d/Body.h
diff --git a/jni/love/src/modules/physics/box2d/ChainShape.cpp b/love/src/jni/love/src/modules/physics/box2d/ChainShape.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/ChainShape.cpp
rename to love/src/jni/love/src/modules/physics/box2d/ChainShape.cpp
diff --git a/jni/love/src/modules/physics/box2d/ChainShape.h b/love/src/jni/love/src/modules/physics/box2d/ChainShape.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/ChainShape.h
rename to love/src/jni/love/src/modules/physics/box2d/ChainShape.h
diff --git a/jni/love/src/modules/physics/box2d/CircleShape.cpp b/love/src/jni/love/src/modules/physics/box2d/CircleShape.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/CircleShape.cpp
rename to love/src/jni/love/src/modules/physics/box2d/CircleShape.cpp
diff --git a/jni/love/src/modules/physics/box2d/CircleShape.h b/love/src/jni/love/src/modules/physics/box2d/CircleShape.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/CircleShape.h
rename to love/src/jni/love/src/modules/physics/box2d/CircleShape.h
diff --git a/jni/love/src/modules/physics/box2d/Contact.cpp b/love/src/jni/love/src/modules/physics/box2d/Contact.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/Contact.cpp
rename to love/src/jni/love/src/modules/physics/box2d/Contact.cpp
diff --git a/jni/love/src/modules/physics/box2d/Contact.h b/love/src/jni/love/src/modules/physics/box2d/Contact.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/Contact.h
rename to love/src/jni/love/src/modules/physics/box2d/Contact.h
diff --git a/jni/love/src/modules/physics/box2d/DistanceJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/DistanceJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/DistanceJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/DistanceJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/DistanceJoint.h b/love/src/jni/love/src/modules/physics/box2d/DistanceJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/DistanceJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/DistanceJoint.h
diff --git a/jni/love/src/modules/physics/box2d/EdgeShape.cpp b/love/src/jni/love/src/modules/physics/box2d/EdgeShape.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/EdgeShape.cpp
rename to love/src/jni/love/src/modules/physics/box2d/EdgeShape.cpp
diff --git a/jni/love/src/modules/physics/box2d/EdgeShape.h b/love/src/jni/love/src/modules/physics/box2d/EdgeShape.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/EdgeShape.h
rename to love/src/jni/love/src/modules/physics/box2d/EdgeShape.h
diff --git a/jni/love/src/modules/physics/box2d/Fixture.cpp b/love/src/jni/love/src/modules/physics/box2d/Fixture.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/Fixture.cpp
rename to love/src/jni/love/src/modules/physics/box2d/Fixture.cpp
diff --git a/jni/love/src/modules/physics/box2d/Fixture.h b/love/src/jni/love/src/modules/physics/box2d/Fixture.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/Fixture.h
rename to love/src/jni/love/src/modules/physics/box2d/Fixture.h
diff --git a/jni/love/src/modules/physics/box2d/FrictionJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/FrictionJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/FrictionJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/FrictionJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/FrictionJoint.h b/love/src/jni/love/src/modules/physics/box2d/FrictionJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/FrictionJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/FrictionJoint.h
diff --git a/jni/love/src/modules/physics/box2d/GearJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/GearJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/GearJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/GearJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/GearJoint.h b/love/src/jni/love/src/modules/physics/box2d/GearJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/GearJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/GearJoint.h
diff --git a/jni/love/src/modules/physics/box2d/Joint.cpp b/love/src/jni/love/src/modules/physics/box2d/Joint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/Joint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/Joint.cpp
diff --git a/jni/love/src/modules/physics/box2d/Joint.h b/love/src/jni/love/src/modules/physics/box2d/Joint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/Joint.h
rename to love/src/jni/love/src/modules/physics/box2d/Joint.h
diff --git a/jni/love/src/modules/physics/box2d/MotorJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/MotorJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/MotorJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/MotorJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/MotorJoint.h b/love/src/jni/love/src/modules/physics/box2d/MotorJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/MotorJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/MotorJoint.h
diff --git a/jni/love/src/modules/physics/box2d/MouseJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/MouseJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/MouseJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/MouseJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/MouseJoint.h b/love/src/jni/love/src/modules/physics/box2d/MouseJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/MouseJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/MouseJoint.h
diff --git a/jni/love/src/modules/physics/box2d/Physics.cpp b/love/src/jni/love/src/modules/physics/box2d/Physics.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/Physics.cpp
rename to love/src/jni/love/src/modules/physics/box2d/Physics.cpp
diff --git a/jni/love/src/modules/physics/box2d/Physics.h b/love/src/jni/love/src/modules/physics/box2d/Physics.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/Physics.h
rename to love/src/jni/love/src/modules/physics/box2d/Physics.h
diff --git a/jni/love/src/modules/physics/box2d/PolygonShape.cpp b/love/src/jni/love/src/modules/physics/box2d/PolygonShape.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/PolygonShape.cpp
rename to love/src/jni/love/src/modules/physics/box2d/PolygonShape.cpp
diff --git a/jni/love/src/modules/physics/box2d/PolygonShape.h b/love/src/jni/love/src/modules/physics/box2d/PolygonShape.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/PolygonShape.h
rename to love/src/jni/love/src/modules/physics/box2d/PolygonShape.h
diff --git a/jni/love/src/modules/physics/box2d/PrismaticJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/PrismaticJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/PrismaticJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/PrismaticJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/PrismaticJoint.h b/love/src/jni/love/src/modules/physics/box2d/PrismaticJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/PrismaticJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/PrismaticJoint.h
diff --git a/jni/love/src/modules/physics/box2d/PulleyJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/PulleyJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/PulleyJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/PulleyJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/PulleyJoint.h b/love/src/jni/love/src/modules/physics/box2d/PulleyJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/PulleyJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/PulleyJoint.h
diff --git a/jni/love/src/modules/physics/box2d/RevoluteJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/RevoluteJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/RevoluteJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/RevoluteJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/RevoluteJoint.h b/love/src/jni/love/src/modules/physics/box2d/RevoluteJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/RevoluteJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/RevoluteJoint.h
diff --git a/jni/love/src/modules/physics/box2d/RopeJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/RopeJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/RopeJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/RopeJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/RopeJoint.h b/love/src/jni/love/src/modules/physics/box2d/RopeJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/RopeJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/RopeJoint.h
diff --git a/jni/love/src/modules/physics/box2d/Shape.cpp b/love/src/jni/love/src/modules/physics/box2d/Shape.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/Shape.cpp
rename to love/src/jni/love/src/modules/physics/box2d/Shape.cpp
diff --git a/jni/love/src/modules/physics/box2d/Shape.h b/love/src/jni/love/src/modules/physics/box2d/Shape.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/Shape.h
rename to love/src/jni/love/src/modules/physics/box2d/Shape.h
diff --git a/jni/love/src/modules/physics/box2d/WeldJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/WeldJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/WeldJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/WeldJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/WeldJoint.h b/love/src/jni/love/src/modules/physics/box2d/WeldJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/WeldJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/WeldJoint.h
diff --git a/jni/love/src/modules/physics/box2d/WheelJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/WheelJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/WheelJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/WheelJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/WheelJoint.h b/love/src/jni/love/src/modules/physics/box2d/WheelJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/WheelJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/WheelJoint.h
diff --git a/jni/love/src/modules/physics/box2d/World.cpp b/love/src/jni/love/src/modules/physics/box2d/World.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/World.cpp
rename to love/src/jni/love/src/modules/physics/box2d/World.cpp
diff --git a/jni/love/src/modules/physics/box2d/World.h b/love/src/jni/love/src/modules/physics/box2d/World.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/World.h
rename to love/src/jni/love/src/modules/physics/box2d/World.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_Body.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_Body.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_Body.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_Body.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_Body.h b/love/src/jni/love/src/modules/physics/box2d/wrap_Body.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_Body.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_Body.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_ChainShape.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_ChainShape.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_ChainShape.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_ChainShape.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_ChainShape.h b/love/src/jni/love/src/modules/physics/box2d/wrap_ChainShape.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_ChainShape.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_ChainShape.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_CircleShape.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_CircleShape.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_CircleShape.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_CircleShape.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_CircleShape.h b/love/src/jni/love/src/modules/physics/box2d/wrap_CircleShape.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_CircleShape.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_CircleShape.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_Contact.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_Contact.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_Contact.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_Contact.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_Contact.h b/love/src/jni/love/src/modules/physics/box2d/wrap_Contact.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_Contact.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_Contact.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_DistanceJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_DistanceJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_DistanceJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_DistanceJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_DistanceJoint.h b/love/src/jni/love/src/modules/physics/box2d/wrap_DistanceJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_DistanceJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_DistanceJoint.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_EdgeShape.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_EdgeShape.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_EdgeShape.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_EdgeShape.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_EdgeShape.h b/love/src/jni/love/src/modules/physics/box2d/wrap_EdgeShape.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_EdgeShape.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_EdgeShape.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_Fixture.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_Fixture.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_Fixture.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_Fixture.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_Fixture.h b/love/src/jni/love/src/modules/physics/box2d/wrap_Fixture.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_Fixture.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_Fixture.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_FrictionJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_FrictionJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_FrictionJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_FrictionJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_FrictionJoint.h b/love/src/jni/love/src/modules/physics/box2d/wrap_FrictionJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_FrictionJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_FrictionJoint.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_GearJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_GearJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_GearJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_GearJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_GearJoint.h b/love/src/jni/love/src/modules/physics/box2d/wrap_GearJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_GearJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_GearJoint.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_Joint.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_Joint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_Joint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_Joint.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_Joint.h b/love/src/jni/love/src/modules/physics/box2d/wrap_Joint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_Joint.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_Joint.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_MotorJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_MotorJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_MotorJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_MotorJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_MotorJoint.h b/love/src/jni/love/src/modules/physics/box2d/wrap_MotorJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_MotorJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_MotorJoint.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_MouseJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_MouseJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_MouseJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_MouseJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_MouseJoint.h b/love/src/jni/love/src/modules/physics/box2d/wrap_MouseJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_MouseJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_MouseJoint.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_Physics.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_Physics.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_Physics.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_Physics.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_Physics.h b/love/src/jni/love/src/modules/physics/box2d/wrap_Physics.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_Physics.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_Physics.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_PolygonShape.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_PolygonShape.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_PolygonShape.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_PolygonShape.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_PolygonShape.h b/love/src/jni/love/src/modules/physics/box2d/wrap_PolygonShape.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_PolygonShape.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_PolygonShape.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_PrismaticJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_PrismaticJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_PrismaticJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_PrismaticJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_PrismaticJoint.h b/love/src/jni/love/src/modules/physics/box2d/wrap_PrismaticJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_PrismaticJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_PrismaticJoint.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_PulleyJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_PulleyJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_PulleyJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_PulleyJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_PulleyJoint.h b/love/src/jni/love/src/modules/physics/box2d/wrap_PulleyJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_PulleyJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_PulleyJoint.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_RevoluteJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_RevoluteJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_RevoluteJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_RevoluteJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_RevoluteJoint.h b/love/src/jni/love/src/modules/physics/box2d/wrap_RevoluteJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_RevoluteJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_RevoluteJoint.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_RopeJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_RopeJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_RopeJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_RopeJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_RopeJoint.h b/love/src/jni/love/src/modules/physics/box2d/wrap_RopeJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_RopeJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_RopeJoint.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_Shape.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_Shape.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_Shape.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_Shape.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_Shape.h b/love/src/jni/love/src/modules/physics/box2d/wrap_Shape.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_Shape.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_Shape.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_WeldJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_WeldJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_WeldJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_WeldJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_WeldJoint.h b/love/src/jni/love/src/modules/physics/box2d/wrap_WeldJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_WeldJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_WeldJoint.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_WheelJoint.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_WheelJoint.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_WheelJoint.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_WheelJoint.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_WheelJoint.h b/love/src/jni/love/src/modules/physics/box2d/wrap_WheelJoint.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_WheelJoint.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_WheelJoint.h
diff --git a/jni/love/src/modules/physics/box2d/wrap_World.cpp b/love/src/jni/love/src/modules/physics/box2d/wrap_World.cpp
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_World.cpp
rename to love/src/jni/love/src/modules/physics/box2d/wrap_World.cpp
diff --git a/jni/love/src/modules/physics/box2d/wrap_World.h b/love/src/jni/love/src/modules/physics/box2d/wrap_World.h
similarity index 100%
rename from jni/love/src/modules/physics/box2d/wrap_World.h
rename to love/src/jni/love/src/modules/physics/box2d/wrap_World.h
diff --git a/jni/love/src/modules/sound/Decoder.h b/love/src/jni/love/src/modules/sound/Decoder.h
similarity index 100%
rename from jni/love/src/modules/sound/Decoder.h
rename to love/src/jni/love/src/modules/sound/Decoder.h
diff --git a/jni/love/src/modules/sound/Sound.cpp b/love/src/jni/love/src/modules/sound/Sound.cpp
similarity index 100%
rename from jni/love/src/modules/sound/Sound.cpp
rename to love/src/jni/love/src/modules/sound/Sound.cpp
diff --git a/jni/love/src/modules/sound/Sound.h b/love/src/jni/love/src/modules/sound/Sound.h
similarity index 100%
rename from jni/love/src/modules/sound/Sound.h
rename to love/src/jni/love/src/modules/sound/Sound.h
diff --git a/jni/love/src/modules/sound/SoundData.cpp b/love/src/jni/love/src/modules/sound/SoundData.cpp
similarity index 100%
rename from jni/love/src/modules/sound/SoundData.cpp
rename to love/src/jni/love/src/modules/sound/SoundData.cpp
diff --git a/jni/love/src/modules/sound/SoundData.h b/love/src/jni/love/src/modules/sound/SoundData.h
similarity index 100%
rename from jni/love/src/modules/sound/SoundData.h
rename to love/src/jni/love/src/modules/sound/SoundData.h
diff --git a/jni/love/src/modules/sound/lullaby/CoreAudioDecoder.cpp b/love/src/jni/love/src/modules/sound/lullaby/CoreAudioDecoder.cpp
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/CoreAudioDecoder.cpp
rename to love/src/jni/love/src/modules/sound/lullaby/CoreAudioDecoder.cpp
diff --git a/jni/love/src/modules/sound/lullaby/CoreAudioDecoder.h b/love/src/jni/love/src/modules/sound/lullaby/CoreAudioDecoder.h
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/CoreAudioDecoder.h
rename to love/src/jni/love/src/modules/sound/lullaby/CoreAudioDecoder.h
diff --git a/jni/love/src/modules/sound/lullaby/Decoder.cpp b/love/src/jni/love/src/modules/sound/lullaby/Decoder.cpp
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/Decoder.cpp
rename to love/src/jni/love/src/modules/sound/lullaby/Decoder.cpp
diff --git a/jni/love/src/modules/sound/lullaby/Decoder.h b/love/src/jni/love/src/modules/sound/lullaby/Decoder.h
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/Decoder.h
rename to love/src/jni/love/src/modules/sound/lullaby/Decoder.h
diff --git a/jni/love/src/modules/sound/lullaby/FLACDecoder.cpp b/love/src/jni/love/src/modules/sound/lullaby/FLACDecoder.cpp
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/FLACDecoder.cpp
rename to love/src/jni/love/src/modules/sound/lullaby/FLACDecoder.cpp
diff --git a/jni/love/src/modules/sound/lullaby/FLACDecoder.h b/love/src/jni/love/src/modules/sound/lullaby/FLACDecoder.h
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/FLACDecoder.h
rename to love/src/jni/love/src/modules/sound/lullaby/FLACDecoder.h
diff --git a/jni/love/src/modules/sound/lullaby/GmeDecoder.cpp b/love/src/jni/love/src/modules/sound/lullaby/GmeDecoder.cpp
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/GmeDecoder.cpp
rename to love/src/jni/love/src/modules/sound/lullaby/GmeDecoder.cpp
diff --git a/jni/love/src/modules/sound/lullaby/GmeDecoder.h b/love/src/jni/love/src/modules/sound/lullaby/GmeDecoder.h
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/GmeDecoder.h
rename to love/src/jni/love/src/modules/sound/lullaby/GmeDecoder.h
diff --git a/jni/love/src/modules/sound/lullaby/ModPlugDecoder.cpp b/love/src/jni/love/src/modules/sound/lullaby/ModPlugDecoder.cpp
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/ModPlugDecoder.cpp
rename to love/src/jni/love/src/modules/sound/lullaby/ModPlugDecoder.cpp
diff --git a/jni/love/src/modules/sound/lullaby/ModPlugDecoder.h b/love/src/jni/love/src/modules/sound/lullaby/ModPlugDecoder.h
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/ModPlugDecoder.h
rename to love/src/jni/love/src/modules/sound/lullaby/ModPlugDecoder.h
diff --git a/jni/love/src/modules/sound/lullaby/Mpg123Decoder.cpp b/love/src/jni/love/src/modules/sound/lullaby/Mpg123Decoder.cpp
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/Mpg123Decoder.cpp
rename to love/src/jni/love/src/modules/sound/lullaby/Mpg123Decoder.cpp
diff --git a/jni/love/src/modules/sound/lullaby/Mpg123Decoder.h b/love/src/jni/love/src/modules/sound/lullaby/Mpg123Decoder.h
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/Mpg123Decoder.h
rename to love/src/jni/love/src/modules/sound/lullaby/Mpg123Decoder.h
diff --git a/jni/love/src/modules/sound/lullaby/Sound.cpp b/love/src/jni/love/src/modules/sound/lullaby/Sound.cpp
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/Sound.cpp
rename to love/src/jni/love/src/modules/sound/lullaby/Sound.cpp
diff --git a/jni/love/src/modules/sound/lullaby/Sound.h b/love/src/jni/love/src/modules/sound/lullaby/Sound.h
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/Sound.h
rename to love/src/jni/love/src/modules/sound/lullaby/Sound.h
diff --git a/jni/love/src/modules/sound/lullaby/VorbisDecoder.cpp b/love/src/jni/love/src/modules/sound/lullaby/VorbisDecoder.cpp
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/VorbisDecoder.cpp
rename to love/src/jni/love/src/modules/sound/lullaby/VorbisDecoder.cpp
diff --git a/jni/love/src/modules/sound/lullaby/VorbisDecoder.h b/love/src/jni/love/src/modules/sound/lullaby/VorbisDecoder.h
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/VorbisDecoder.h
rename to love/src/jni/love/src/modules/sound/lullaby/VorbisDecoder.h
diff --git a/jni/love/src/modules/sound/lullaby/WaveDecoder.cpp b/love/src/jni/love/src/modules/sound/lullaby/WaveDecoder.cpp
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/WaveDecoder.cpp
rename to love/src/jni/love/src/modules/sound/lullaby/WaveDecoder.cpp
diff --git a/jni/love/src/modules/sound/lullaby/WaveDecoder.h b/love/src/jni/love/src/modules/sound/lullaby/WaveDecoder.h
similarity index 100%
rename from jni/love/src/modules/sound/lullaby/WaveDecoder.h
rename to love/src/jni/love/src/modules/sound/lullaby/WaveDecoder.h
diff --git a/jni/love/src/modules/sound/wrap_Decoder.cpp b/love/src/jni/love/src/modules/sound/wrap_Decoder.cpp
similarity index 100%
rename from jni/love/src/modules/sound/wrap_Decoder.cpp
rename to love/src/jni/love/src/modules/sound/wrap_Decoder.cpp
diff --git a/jni/love/src/modules/sound/wrap_Decoder.h b/love/src/jni/love/src/modules/sound/wrap_Decoder.h
similarity index 100%
rename from jni/love/src/modules/sound/wrap_Decoder.h
rename to love/src/jni/love/src/modules/sound/wrap_Decoder.h
diff --git a/jni/love/src/modules/sound/wrap_Sound.cpp b/love/src/jni/love/src/modules/sound/wrap_Sound.cpp
similarity index 100%
rename from jni/love/src/modules/sound/wrap_Sound.cpp
rename to love/src/jni/love/src/modules/sound/wrap_Sound.cpp
diff --git a/jni/love/src/modules/sound/wrap_Sound.h b/love/src/jni/love/src/modules/sound/wrap_Sound.h
similarity index 100%
rename from jni/love/src/modules/sound/wrap_Sound.h
rename to love/src/jni/love/src/modules/sound/wrap_Sound.h
diff --git a/jni/love/src/modules/sound/wrap_SoundData.cpp b/love/src/jni/love/src/modules/sound/wrap_SoundData.cpp
similarity index 100%
rename from jni/love/src/modules/sound/wrap_SoundData.cpp
rename to love/src/jni/love/src/modules/sound/wrap_SoundData.cpp
diff --git a/jni/love/src/modules/sound/wrap_SoundData.h b/love/src/jni/love/src/modules/sound/wrap_SoundData.h
similarity index 100%
rename from jni/love/src/modules/sound/wrap_SoundData.h
rename to love/src/jni/love/src/modules/sound/wrap_SoundData.h
diff --git a/jni/love/src/modules/sound/wrap_SoundData.lua b/love/src/jni/love/src/modules/sound/wrap_SoundData.lua
similarity index 100%
rename from jni/love/src/modules/sound/wrap_SoundData.lua
rename to love/src/jni/love/src/modules/sound/wrap_SoundData.lua
diff --git a/jni/love/src/modules/system/System.cpp b/love/src/jni/love/src/modules/system/System.cpp
similarity index 100%
rename from jni/love/src/modules/system/System.cpp
rename to love/src/jni/love/src/modules/system/System.cpp
diff --git a/jni/love/src/modules/system/System.h b/love/src/jni/love/src/modules/system/System.h
similarity index 100%
rename from jni/love/src/modules/system/System.h
rename to love/src/jni/love/src/modules/system/System.h
diff --git a/jni/love/src/modules/system/sdl/System.cpp b/love/src/jni/love/src/modules/system/sdl/System.cpp
similarity index 100%
rename from jni/love/src/modules/system/sdl/System.cpp
rename to love/src/jni/love/src/modules/system/sdl/System.cpp
diff --git a/jni/love/src/modules/system/sdl/System.h b/love/src/jni/love/src/modules/system/sdl/System.h
similarity index 100%
rename from jni/love/src/modules/system/sdl/System.h
rename to love/src/jni/love/src/modules/system/sdl/System.h
diff --git a/jni/love/src/modules/system/wrap_System.cpp b/love/src/jni/love/src/modules/system/wrap_System.cpp
similarity index 100%
rename from jni/love/src/modules/system/wrap_System.cpp
rename to love/src/jni/love/src/modules/system/wrap_System.cpp
diff --git a/jni/love/src/modules/system/wrap_System.h b/love/src/jni/love/src/modules/system/wrap_System.h
similarity index 100%
rename from jni/love/src/modules/system/wrap_System.h
rename to love/src/jni/love/src/modules/system/wrap_System.h
diff --git a/jni/love/src/modules/thread/Channel.cpp b/love/src/jni/love/src/modules/thread/Channel.cpp
similarity index 100%
rename from jni/love/src/modules/thread/Channel.cpp
rename to love/src/jni/love/src/modules/thread/Channel.cpp
diff --git a/jni/love/src/modules/thread/Channel.h b/love/src/jni/love/src/modules/thread/Channel.h
similarity index 100%
rename from jni/love/src/modules/thread/Channel.h
rename to love/src/jni/love/src/modules/thread/Channel.h
diff --git a/jni/love/src/modules/thread/LuaThread.cpp b/love/src/jni/love/src/modules/thread/LuaThread.cpp
similarity index 100%
rename from jni/love/src/modules/thread/LuaThread.cpp
rename to love/src/jni/love/src/modules/thread/LuaThread.cpp
diff --git a/jni/love/src/modules/thread/LuaThread.h b/love/src/jni/love/src/modules/thread/LuaThread.h
similarity index 100%
rename from jni/love/src/modules/thread/LuaThread.h
rename to love/src/jni/love/src/modules/thread/LuaThread.h
diff --git a/jni/love/src/modules/thread/Thread.h b/love/src/jni/love/src/modules/thread/Thread.h
similarity index 100%
rename from jni/love/src/modules/thread/Thread.h
rename to love/src/jni/love/src/modules/thread/Thread.h
diff --git a/jni/love/src/modules/thread/ThreadModule.cpp b/love/src/jni/love/src/modules/thread/ThreadModule.cpp
similarity index 100%
rename from jni/love/src/modules/thread/ThreadModule.cpp
rename to love/src/jni/love/src/modules/thread/ThreadModule.cpp
diff --git a/jni/love/src/modules/thread/ThreadModule.h b/love/src/jni/love/src/modules/thread/ThreadModule.h
similarity index 100%
rename from jni/love/src/modules/thread/ThreadModule.h
rename to love/src/jni/love/src/modules/thread/ThreadModule.h
diff --git a/jni/love/src/modules/thread/sdl/Thread.cpp b/love/src/jni/love/src/modules/thread/sdl/Thread.cpp
similarity index 100%
rename from jni/love/src/modules/thread/sdl/Thread.cpp
rename to love/src/jni/love/src/modules/thread/sdl/Thread.cpp
diff --git a/jni/love/src/modules/thread/sdl/Thread.h b/love/src/jni/love/src/modules/thread/sdl/Thread.h
similarity index 100%
rename from jni/love/src/modules/thread/sdl/Thread.h
rename to love/src/jni/love/src/modules/thread/sdl/Thread.h
diff --git a/jni/love/src/modules/thread/sdl/threads.cpp b/love/src/jni/love/src/modules/thread/sdl/threads.cpp
similarity index 100%
rename from jni/love/src/modules/thread/sdl/threads.cpp
rename to love/src/jni/love/src/modules/thread/sdl/threads.cpp
diff --git a/jni/love/src/modules/thread/sdl/threads.h b/love/src/jni/love/src/modules/thread/sdl/threads.h
similarity index 100%
rename from jni/love/src/modules/thread/sdl/threads.h
rename to love/src/jni/love/src/modules/thread/sdl/threads.h
diff --git a/jni/love/src/modules/thread/threads.cpp b/love/src/jni/love/src/modules/thread/threads.cpp
similarity index 100%
rename from jni/love/src/modules/thread/threads.cpp
rename to love/src/jni/love/src/modules/thread/threads.cpp
diff --git a/jni/love/src/modules/thread/threads.h b/love/src/jni/love/src/modules/thread/threads.h
similarity index 100%
rename from jni/love/src/modules/thread/threads.h
rename to love/src/jni/love/src/modules/thread/threads.h
diff --git a/jni/love/src/modules/thread/wrap_Channel.cpp b/love/src/jni/love/src/modules/thread/wrap_Channel.cpp
similarity index 100%
rename from jni/love/src/modules/thread/wrap_Channel.cpp
rename to love/src/jni/love/src/modules/thread/wrap_Channel.cpp
diff --git a/jni/love/src/modules/thread/wrap_Channel.h b/love/src/jni/love/src/modules/thread/wrap_Channel.h
similarity index 100%
rename from jni/love/src/modules/thread/wrap_Channel.h
rename to love/src/jni/love/src/modules/thread/wrap_Channel.h
diff --git a/jni/love/src/modules/thread/wrap_LuaThread.cpp b/love/src/jni/love/src/modules/thread/wrap_LuaThread.cpp
similarity index 100%
rename from jni/love/src/modules/thread/wrap_LuaThread.cpp
rename to love/src/jni/love/src/modules/thread/wrap_LuaThread.cpp
diff --git a/jni/love/src/modules/thread/wrap_LuaThread.h b/love/src/jni/love/src/modules/thread/wrap_LuaThread.h
similarity index 100%
rename from jni/love/src/modules/thread/wrap_LuaThread.h
rename to love/src/jni/love/src/modules/thread/wrap_LuaThread.h
diff --git a/jni/love/src/modules/thread/wrap_ThreadModule.cpp b/love/src/jni/love/src/modules/thread/wrap_ThreadModule.cpp
similarity index 100%
rename from jni/love/src/modules/thread/wrap_ThreadModule.cpp
rename to love/src/jni/love/src/modules/thread/wrap_ThreadModule.cpp
diff --git a/jni/love/src/modules/thread/wrap_ThreadModule.h b/love/src/jni/love/src/modules/thread/wrap_ThreadModule.h
similarity index 100%
rename from jni/love/src/modules/thread/wrap_ThreadModule.h
rename to love/src/jni/love/src/modules/thread/wrap_ThreadModule.h
diff --git a/jni/love/src/modules/timer/Timer.cpp b/love/src/jni/love/src/modules/timer/Timer.cpp
similarity index 100%
rename from jni/love/src/modules/timer/Timer.cpp
rename to love/src/jni/love/src/modules/timer/Timer.cpp
diff --git a/jni/love/src/modules/timer/Timer.h b/love/src/jni/love/src/modules/timer/Timer.h
similarity index 100%
rename from jni/love/src/modules/timer/Timer.h
rename to love/src/jni/love/src/modules/timer/Timer.h
diff --git a/jni/love/src/modules/timer/sdl/Timer.cpp b/love/src/jni/love/src/modules/timer/sdl/Timer.cpp
similarity index 100%
rename from jni/love/src/modules/timer/sdl/Timer.cpp
rename to love/src/jni/love/src/modules/timer/sdl/Timer.cpp
diff --git a/jni/love/src/modules/timer/sdl/Timer.h b/love/src/jni/love/src/modules/timer/sdl/Timer.h
similarity index 100%
rename from jni/love/src/modules/timer/sdl/Timer.h
rename to love/src/jni/love/src/modules/timer/sdl/Timer.h
diff --git a/jni/love/src/modules/timer/wrap_Timer.cpp b/love/src/jni/love/src/modules/timer/wrap_Timer.cpp
similarity index 100%
rename from jni/love/src/modules/timer/wrap_Timer.cpp
rename to love/src/jni/love/src/modules/timer/wrap_Timer.cpp
diff --git a/jni/love/src/modules/timer/wrap_Timer.h b/love/src/jni/love/src/modules/timer/wrap_Timer.h
similarity index 100%
rename from jni/love/src/modules/timer/wrap_Timer.h
rename to love/src/jni/love/src/modules/timer/wrap_Timer.h
diff --git a/jni/love/src/modules/touch/Touch.h b/love/src/jni/love/src/modules/touch/Touch.h
similarity index 100%
rename from jni/love/src/modules/touch/Touch.h
rename to love/src/jni/love/src/modules/touch/Touch.h
diff --git a/jni/love/src/modules/touch/sdl/Touch.cpp b/love/src/jni/love/src/modules/touch/sdl/Touch.cpp
similarity index 100%
rename from jni/love/src/modules/touch/sdl/Touch.cpp
rename to love/src/jni/love/src/modules/touch/sdl/Touch.cpp
diff --git a/jni/love/src/modules/touch/sdl/Touch.h b/love/src/jni/love/src/modules/touch/sdl/Touch.h
similarity index 100%
rename from jni/love/src/modules/touch/sdl/Touch.h
rename to love/src/jni/love/src/modules/touch/sdl/Touch.h
diff --git a/jni/love/src/modules/touch/wrap_Touch.cpp b/love/src/jni/love/src/modules/touch/wrap_Touch.cpp
similarity index 100%
rename from jni/love/src/modules/touch/wrap_Touch.cpp
rename to love/src/jni/love/src/modules/touch/wrap_Touch.cpp
diff --git a/jni/love/src/modules/touch/wrap_Touch.h b/love/src/jni/love/src/modules/touch/wrap_Touch.h
similarity index 100%
rename from jni/love/src/modules/touch/wrap_Touch.h
rename to love/src/jni/love/src/modules/touch/wrap_Touch.h
diff --git a/jni/love/src/modules/video/Video.h b/love/src/jni/love/src/modules/video/Video.h
similarity index 100%
rename from jni/love/src/modules/video/Video.h
rename to love/src/jni/love/src/modules/video/Video.h
diff --git a/jni/love/src/modules/video/VideoStream.cpp b/love/src/jni/love/src/modules/video/VideoStream.cpp
similarity index 100%
rename from jni/love/src/modules/video/VideoStream.cpp
rename to love/src/jni/love/src/modules/video/VideoStream.cpp
diff --git a/jni/love/src/modules/video/VideoStream.h b/love/src/jni/love/src/modules/video/VideoStream.h
similarity index 100%
rename from jni/love/src/modules/video/VideoStream.h
rename to love/src/jni/love/src/modules/video/VideoStream.h
diff --git a/jni/love/src/modules/video/theora/Video.cpp b/love/src/jni/love/src/modules/video/theora/Video.cpp
similarity index 100%
rename from jni/love/src/modules/video/theora/Video.cpp
rename to love/src/jni/love/src/modules/video/theora/Video.cpp
diff --git a/jni/love/src/modules/video/theora/Video.h b/love/src/jni/love/src/modules/video/theora/Video.h
similarity index 100%
rename from jni/love/src/modules/video/theora/Video.h
rename to love/src/jni/love/src/modules/video/theora/Video.h
diff --git a/jni/love/src/modules/video/theora/VideoStream.cpp b/love/src/jni/love/src/modules/video/theora/VideoStream.cpp
similarity index 100%
rename from jni/love/src/modules/video/theora/VideoStream.cpp
rename to love/src/jni/love/src/modules/video/theora/VideoStream.cpp
diff --git a/jni/love/src/modules/video/theora/VideoStream.h b/love/src/jni/love/src/modules/video/theora/VideoStream.h
similarity index 100%
rename from jni/love/src/modules/video/theora/VideoStream.h
rename to love/src/jni/love/src/modules/video/theora/VideoStream.h
diff --git a/jni/love/src/modules/video/wrap_Video.cpp b/love/src/jni/love/src/modules/video/wrap_Video.cpp
similarity index 100%
rename from jni/love/src/modules/video/wrap_Video.cpp
rename to love/src/jni/love/src/modules/video/wrap_Video.cpp
diff --git a/jni/love/src/modules/video/wrap_Video.h b/love/src/jni/love/src/modules/video/wrap_Video.h
similarity index 100%
rename from jni/love/src/modules/video/wrap_Video.h
rename to love/src/jni/love/src/modules/video/wrap_Video.h
diff --git a/jni/love/src/modules/video/wrap_VideoStream.cpp b/love/src/jni/love/src/modules/video/wrap_VideoStream.cpp
similarity index 100%
rename from jni/love/src/modules/video/wrap_VideoStream.cpp
rename to love/src/jni/love/src/modules/video/wrap_VideoStream.cpp
diff --git a/jni/love/src/modules/video/wrap_VideoStream.h b/love/src/jni/love/src/modules/video/wrap_VideoStream.h
similarity index 100%
rename from jni/love/src/modules/video/wrap_VideoStream.h
rename to love/src/jni/love/src/modules/video/wrap_VideoStream.h
diff --git a/jni/love/src/modules/window/Window.cpp b/love/src/jni/love/src/modules/window/Window.cpp
similarity index 100%
rename from jni/love/src/modules/window/Window.cpp
rename to love/src/jni/love/src/modules/window/Window.cpp
diff --git a/jni/love/src/modules/window/Window.h b/love/src/jni/love/src/modules/window/Window.h
similarity index 100%
rename from jni/love/src/modules/window/Window.h
rename to love/src/jni/love/src/modules/window/Window.h
diff --git a/jni/love/src/modules/window/sdl/Window.cpp b/love/src/jni/love/src/modules/window/sdl/Window.cpp
similarity index 100%
rename from jni/love/src/modules/window/sdl/Window.cpp
rename to love/src/jni/love/src/modules/window/sdl/Window.cpp
diff --git a/jni/love/src/modules/window/sdl/Window.h b/love/src/jni/love/src/modules/window/sdl/Window.h
similarity index 100%
rename from jni/love/src/modules/window/sdl/Window.h
rename to love/src/jni/love/src/modules/window/sdl/Window.h
diff --git a/jni/love/src/modules/window/wrap_Window.cpp b/love/src/jni/love/src/modules/window/wrap_Window.cpp
similarity index 100%
rename from jni/love/src/modules/window/wrap_Window.cpp
rename to love/src/jni/love/src/modules/window/wrap_Window.cpp
diff --git a/jni/love/src/modules/window/wrap_Window.h b/love/src/jni/love/src/modules/window/wrap_Window.h
similarity index 100%
rename from jni/love/src/modules/window/wrap_Window.h
rename to love/src/jni/love/src/modules/window/wrap_Window.h
diff --git a/jni/love/src/scripts/auto.lua b/love/src/jni/love/src/scripts/auto.lua
similarity index 100%
rename from jni/love/src/scripts/auto.lua
rename to love/src/jni/love/src/scripts/auto.lua
diff --git a/jni/love/src/scripts/boot.lua b/love/src/jni/love/src/scripts/boot.lua
similarity index 100%
rename from jni/love/src/scripts/boot.lua
rename to love/src/jni/love/src/scripts/boot.lua
diff --git a/jni/love/src/scripts/boot.lua.h b/love/src/jni/love/src/scripts/boot.lua.h
similarity index 100%
rename from jni/love/src/scripts/boot.lua.h
rename to love/src/jni/love/src/scripts/boot.lua.h
diff --git a/jni/love/src/scripts/nogame.lua b/love/src/jni/love/src/scripts/nogame.lua
similarity index 100%
rename from jni/love/src/scripts/nogame.lua
rename to love/src/jni/love/src/scripts/nogame.lua
diff --git a/jni/love/src/scripts/nogame.lua.h b/love/src/jni/love/src/scripts/nogame.lua.h
similarity index 100%
rename from jni/love/src/scripts/nogame.lua.h
rename to love/src/jni/love/src/scripts/nogame.lua.h
diff --git a/jni/mpg123-1.17.0/AUTHORS b/love/src/jni/mpg123-1.17.0/AUTHORS
similarity index 100%
rename from jni/mpg123-1.17.0/AUTHORS
rename to love/src/jni/mpg123-1.17.0/AUTHORS
diff --git a/jni/mpg123-1.17.0/Android.mk b/love/src/jni/mpg123-1.17.0/Android.mk
similarity index 100%
rename from jni/mpg123-1.17.0/Android.mk
rename to love/src/jni/mpg123-1.17.0/Android.mk
diff --git a/jni/mpg123-1.17.0/COPYING b/love/src/jni/mpg123-1.17.0/COPYING
similarity index 100%
rename from jni/mpg123-1.17.0/COPYING
rename to love/src/jni/mpg123-1.17.0/COPYING
diff --git a/jni/mpg123-1.17.0/ChangeLog b/love/src/jni/mpg123-1.17.0/ChangeLog
similarity index 100%
rename from jni/mpg123-1.17.0/ChangeLog
rename to love/src/jni/mpg123-1.17.0/ChangeLog
diff --git a/jni/mpg123-1.17.0/INSTALL b/love/src/jni/mpg123-1.17.0/INSTALL
similarity index 100%
rename from jni/mpg123-1.17.0/INSTALL
rename to love/src/jni/mpg123-1.17.0/INSTALL
diff --git a/jni/mpg123-1.17.0/Makefile b/love/src/jni/mpg123-1.17.0/Makefile
similarity index 100%
rename from jni/mpg123-1.17.0/Makefile
rename to love/src/jni/mpg123-1.17.0/Makefile
diff --git a/jni/mpg123-1.17.0/Makefile.am b/love/src/jni/mpg123-1.17.0/Makefile.am
similarity index 100%
rename from jni/mpg123-1.17.0/Makefile.am
rename to love/src/jni/mpg123-1.17.0/Makefile.am
diff --git a/jni/mpg123-1.17.0/Makefile.in b/love/src/jni/mpg123-1.17.0/Makefile.in
similarity index 100%
rename from jni/mpg123-1.17.0/Makefile.in
rename to love/src/jni/mpg123-1.17.0/Makefile.in
diff --git a/jni/mpg123-1.17.0/NEWS b/love/src/jni/mpg123-1.17.0/NEWS
similarity index 100%
rename from jni/mpg123-1.17.0/NEWS
rename to love/src/jni/mpg123-1.17.0/NEWS
diff --git a/jni/mpg123-1.17.0/NEWS.libmpg123 b/love/src/jni/mpg123-1.17.0/NEWS.libmpg123
similarity index 100%
rename from jni/mpg123-1.17.0/NEWS.libmpg123
rename to love/src/jni/mpg123-1.17.0/NEWS.libmpg123
diff --git a/jni/mpg123-1.17.0/README b/love/src/jni/mpg123-1.17.0/README
similarity index 100%
rename from jni/mpg123-1.17.0/README
rename to love/src/jni/mpg123-1.17.0/README
diff --git a/jni/mpg123-1.17.0/TODO b/love/src/jni/mpg123-1.17.0/TODO
similarity index 100%
rename from jni/mpg123-1.17.0/TODO
rename to love/src/jni/mpg123-1.17.0/TODO
diff --git a/jni/mpg123-1.17.0/aclocal.m4 b/love/src/jni/mpg123-1.17.0/aclocal.m4
similarity index 100%
rename from jni/mpg123-1.17.0/aclocal.m4
rename to love/src/jni/mpg123-1.17.0/aclocal.m4
diff --git a/jni/mpg123-1.17.0/build/compile b/love/src/jni/mpg123-1.17.0/build/compile
similarity index 100%
rename from jni/mpg123-1.17.0/build/compile
rename to love/src/jni/mpg123-1.17.0/build/compile
diff --git a/jni/mpg123-1.17.0/build/config.guess b/love/src/jni/mpg123-1.17.0/build/config.guess
similarity index 100%
rename from jni/mpg123-1.17.0/build/config.guess
rename to love/src/jni/mpg123-1.17.0/build/config.guess
diff --git a/jni/mpg123-1.17.0/build/config.sub b/love/src/jni/mpg123-1.17.0/build/config.sub
similarity index 100%
rename from jni/mpg123-1.17.0/build/config.sub
rename to love/src/jni/mpg123-1.17.0/build/config.sub
diff --git a/jni/mpg123-1.17.0/build/depcomp b/love/src/jni/mpg123-1.17.0/build/depcomp
similarity index 100%
rename from jni/mpg123-1.17.0/build/depcomp
rename to love/src/jni/mpg123-1.17.0/build/depcomp
diff --git a/jni/mpg123-1.17.0/build/install-sh b/love/src/jni/mpg123-1.17.0/build/install-sh
similarity index 100%
rename from jni/mpg123-1.17.0/build/install-sh
rename to love/src/jni/mpg123-1.17.0/build/install-sh
diff --git a/jni/mpg123-1.17.0/build/ltmain.sh b/love/src/jni/mpg123-1.17.0/build/ltmain.sh
similarity index 100%
rename from jni/mpg123-1.17.0/build/ltmain.sh
rename to love/src/jni/mpg123-1.17.0/build/ltmain.sh
diff --git a/jni/mpg123-1.17.0/build/missing b/love/src/jni/mpg123-1.17.0/build/missing
similarity index 100%
rename from jni/mpg123-1.17.0/build/missing
rename to love/src/jni/mpg123-1.17.0/build/missing
diff --git a/jni/mpg123-1.17.0/config.log b/love/src/jni/mpg123-1.17.0/config.log
similarity index 100%
rename from jni/mpg123-1.17.0/config.log
rename to love/src/jni/mpg123-1.17.0/config.log
diff --git a/jni/mpg123-1.17.0/config.status b/love/src/jni/mpg123-1.17.0/config.status
similarity index 100%
rename from jni/mpg123-1.17.0/config.status
rename to love/src/jni/mpg123-1.17.0/config.status
diff --git a/jni/mpg123-1.17.0/configure b/love/src/jni/mpg123-1.17.0/configure
similarity index 100%
rename from jni/mpg123-1.17.0/configure
rename to love/src/jni/mpg123-1.17.0/configure
diff --git a/jni/mpg123-1.17.0/configure.ac b/love/src/jni/mpg123-1.17.0/configure.ac
similarity index 100%
rename from jni/mpg123-1.17.0/configure.ac
rename to love/src/jni/mpg123-1.17.0/configure.ac
diff --git a/jni/mpg123-1.17.0/doc/ACCURACY b/love/src/jni/mpg123-1.17.0/doc/ACCURACY
similarity index 100%
rename from jni/mpg123-1.17.0/doc/ACCURACY
rename to love/src/jni/mpg123-1.17.0/doc/ACCURACY
diff --git a/jni/mpg123-1.17.0/doc/BENCHMARKING b/love/src/jni/mpg123-1.17.0/doc/BENCHMARKING
similarity index 100%
rename from jni/mpg123-1.17.0/doc/BENCHMARKING
rename to love/src/jni/mpg123-1.17.0/doc/BENCHMARKING
diff --git a/jni/mpg123-1.17.0/doc/BUGS b/love/src/jni/mpg123-1.17.0/doc/BUGS
similarity index 100%
rename from jni/mpg123-1.17.0/doc/BUGS
rename to love/src/jni/mpg123-1.17.0/doc/BUGS
diff --git a/jni/mpg123-1.17.0/doc/CONTACT b/love/src/jni/mpg123-1.17.0/doc/CONTACT
similarity index 100%
rename from jni/mpg123-1.17.0/doc/CONTACT
rename to love/src/jni/mpg123-1.17.0/doc/CONTACT
diff --git a/jni/mpg123-1.17.0/doc/LARGEFILE b/love/src/jni/mpg123-1.17.0/doc/LARGEFILE
similarity index 100%
rename from jni/mpg123-1.17.0/doc/LARGEFILE
rename to love/src/jni/mpg123-1.17.0/doc/LARGEFILE
diff --git a/jni/mpg123-1.17.0/doc/LICENSE b/love/src/jni/mpg123-1.17.0/doc/LICENSE
similarity index 100%
rename from jni/mpg123-1.17.0/doc/LICENSE
rename to love/src/jni/mpg123-1.17.0/doc/LICENSE
diff --git a/jni/mpg123-1.17.0/doc/Makefile b/love/src/jni/mpg123-1.17.0/doc/Makefile
similarity index 100%
rename from jni/mpg123-1.17.0/doc/Makefile
rename to love/src/jni/mpg123-1.17.0/doc/Makefile
diff --git a/jni/mpg123-1.17.0/doc/Makefile.am b/love/src/jni/mpg123-1.17.0/doc/Makefile.am
similarity index 100%
rename from jni/mpg123-1.17.0/doc/Makefile.am
rename to love/src/jni/mpg123-1.17.0/doc/Makefile.am
diff --git a/jni/mpg123-1.17.0/doc/Makefile.in b/love/src/jni/mpg123-1.17.0/doc/Makefile.in
similarity index 100%
rename from jni/mpg123-1.17.0/doc/Makefile.in
rename to love/src/jni/mpg123-1.17.0/doc/Makefile.in
diff --git a/jni/mpg123-1.17.0/doc/PATENTS b/love/src/jni/mpg123-1.17.0/doc/PATENTS
similarity index 100%
rename from jni/mpg123-1.17.0/doc/PATENTS
rename to love/src/jni/mpg123-1.17.0/doc/PATENTS
diff --git a/jni/mpg123-1.17.0/doc/README.3DNOW b/love/src/jni/mpg123-1.17.0/doc/README.3DNOW
similarity index 100%
rename from jni/mpg123-1.17.0/doc/README.3DNOW
rename to love/src/jni/mpg123-1.17.0/doc/README.3DNOW
diff --git a/jni/mpg123-1.17.0/doc/README.gain b/love/src/jni/mpg123-1.17.0/doc/README.gain
similarity index 100%
rename from jni/mpg123-1.17.0/doc/README.gain
rename to love/src/jni/mpg123-1.17.0/doc/README.gain
diff --git a/jni/mpg123-1.17.0/doc/README.remote b/love/src/jni/mpg123-1.17.0/doc/README.remote
similarity index 100%
rename from jni/mpg123-1.17.0/doc/README.remote
rename to love/src/jni/mpg123-1.17.0/doc/README.remote
diff --git a/jni/mpg123-1.17.0/doc/ROAD_TO_LGPL b/love/src/jni/mpg123-1.17.0/doc/ROAD_TO_LGPL
similarity index 100%
rename from jni/mpg123-1.17.0/doc/ROAD_TO_LGPL
rename to love/src/jni/mpg123-1.17.0/doc/ROAD_TO_LGPL
diff --git a/jni/mpg123-1.17.0/doc/THANKS b/love/src/jni/mpg123-1.17.0/doc/THANKS
similarity index 100%
rename from jni/mpg123-1.17.0/doc/THANKS
rename to love/src/jni/mpg123-1.17.0/doc/THANKS
diff --git a/jni/mpg123-1.17.0/doc/TODO b/love/src/jni/mpg123-1.17.0/doc/TODO
similarity index 100%
rename from jni/mpg123-1.17.0/doc/TODO
rename to love/src/jni/mpg123-1.17.0/doc/TODO
diff --git a/jni/mpg123-1.17.0/doc/doxy_examples.c b/love/src/jni/mpg123-1.17.0/doc/doxy_examples.c
similarity index 100%
rename from jni/mpg123-1.17.0/doc/doxy_examples.c
rename to love/src/jni/mpg123-1.17.0/doc/doxy_examples.c
diff --git a/jni/mpg123-1.17.0/doc/doxygen.conf b/love/src/jni/mpg123-1.17.0/doc/doxygen.conf
similarity index 100%
rename from jni/mpg123-1.17.0/doc/doxygen.conf
rename to love/src/jni/mpg123-1.17.0/doc/doxygen.conf
diff --git a/jni/mpg123-1.17.0/doc/doxyhead.xhtml b/love/src/jni/mpg123-1.17.0/doc/doxyhead.xhtml
similarity index 100%
rename from jni/mpg123-1.17.0/doc/doxyhead.xhtml
rename to love/src/jni/mpg123-1.17.0/doc/doxyhead.xhtml
diff --git a/jni/mpg123-1.17.0/doc/examples/Makefile b/love/src/jni/mpg123-1.17.0/doc/examples/Makefile
similarity index 100%
rename from jni/mpg123-1.17.0/doc/examples/Makefile
rename to love/src/jni/mpg123-1.17.0/doc/examples/Makefile
diff --git a/jni/mpg123-1.17.0/doc/examples/dump_seekindex.c b/love/src/jni/mpg123-1.17.0/doc/examples/dump_seekindex.c
similarity index 100%
rename from jni/mpg123-1.17.0/doc/examples/dump_seekindex.c
rename to love/src/jni/mpg123-1.17.0/doc/examples/dump_seekindex.c
diff --git a/jni/mpg123-1.17.0/doc/examples/extract_frames.c b/love/src/jni/mpg123-1.17.0/doc/examples/extract_frames.c
similarity index 100%
rename from jni/mpg123-1.17.0/doc/examples/extract_frames.c
rename to love/src/jni/mpg123-1.17.0/doc/examples/extract_frames.c
diff --git a/jni/mpg123-1.17.0/doc/examples/feedseek.c b/love/src/jni/mpg123-1.17.0/doc/examples/feedseek.c
similarity index 100%
rename from jni/mpg123-1.17.0/doc/examples/feedseek.c
rename to love/src/jni/mpg123-1.17.0/doc/examples/feedseek.c
diff --git a/jni/mpg123-1.17.0/doc/examples/id3dump.c b/love/src/jni/mpg123-1.17.0/doc/examples/id3dump.c
similarity index 100%
rename from jni/mpg123-1.17.0/doc/examples/id3dump.c
rename to love/src/jni/mpg123-1.17.0/doc/examples/id3dump.c
diff --git a/jni/mpg123-1.17.0/doc/examples/mpg123_to_wav.c b/love/src/jni/mpg123-1.17.0/doc/examples/mpg123_to_wav.c
similarity index 100%
rename from jni/mpg123-1.17.0/doc/examples/mpg123_to_wav.c
rename to love/src/jni/mpg123-1.17.0/doc/examples/mpg123_to_wav.c
diff --git a/jni/mpg123-1.17.0/doc/examples/mpglib.c b/love/src/jni/mpg123-1.17.0/doc/examples/mpglib.c
similarity index 100%
rename from jni/mpg123-1.17.0/doc/examples/mpglib.c
rename to love/src/jni/mpg123-1.17.0/doc/examples/mpglib.c
diff --git a/jni/mpg123-1.17.0/doc/examples/scan.c b/love/src/jni/mpg123-1.17.0/doc/examples/scan.c
similarity index 100%
rename from jni/mpg123-1.17.0/doc/examples/scan.c
rename to love/src/jni/mpg123-1.17.0/doc/examples/scan.c
diff --git a/jni/mpg123-1.17.0/doc/libmpg123_speed.txt b/love/src/jni/mpg123-1.17.0/doc/libmpg123_speed.txt
similarity index 100%
rename from jni/mpg123-1.17.0/doc/libmpg123_speed.txt
rename to love/src/jni/mpg123-1.17.0/doc/libmpg123_speed.txt
diff --git a/jni/mpg123-1.17.0/equalize.dat b/love/src/jni/mpg123-1.17.0/equalize.dat
similarity index 100%
rename from jni/mpg123-1.17.0/equalize.dat
rename to love/src/jni/mpg123-1.17.0/equalize.dat
diff --git a/jni/mpg123-1.17.0/libmpg123.pc b/love/src/jni/mpg123-1.17.0/libmpg123.pc
similarity index 100%
rename from jni/mpg123-1.17.0/libmpg123.pc
rename to love/src/jni/mpg123-1.17.0/libmpg123.pc
diff --git a/jni/mpg123-1.17.0/libmpg123.pc.in b/love/src/jni/mpg123-1.17.0/libmpg123.pc.in
similarity index 100%
rename from jni/mpg123-1.17.0/libmpg123.pc.in
rename to love/src/jni/mpg123-1.17.0/libmpg123.pc.in
diff --git a/jni/mpg123-1.17.0/libtool b/love/src/jni/mpg123-1.17.0/libtool
similarity index 100%
rename from jni/mpg123-1.17.0/libtool
rename to love/src/jni/mpg123-1.17.0/libtool
diff --git a/jni/mpg123-1.17.0/m4/addrconfig.m4 b/love/src/jni/mpg123-1.17.0/m4/addrconfig.m4
similarity index 100%
rename from jni/mpg123-1.17.0/m4/addrconfig.m4
rename to love/src/jni/mpg123-1.17.0/m4/addrconfig.m4
diff --git a/jni/mpg123-1.17.0/m4/libtool.m4 b/love/src/jni/mpg123-1.17.0/m4/libtool.m4
similarity index 100%
rename from jni/mpg123-1.17.0/m4/libtool.m4
rename to love/src/jni/mpg123-1.17.0/m4/libtool.m4
diff --git a/jni/mpg123-1.17.0/m4/ltoptions.m4 b/love/src/jni/mpg123-1.17.0/m4/ltoptions.m4
similarity index 100%
rename from jni/mpg123-1.17.0/m4/ltoptions.m4
rename to love/src/jni/mpg123-1.17.0/m4/ltoptions.m4
diff --git a/jni/mpg123-1.17.0/m4/ltsugar.m4 b/love/src/jni/mpg123-1.17.0/m4/ltsugar.m4
similarity index 100%
rename from jni/mpg123-1.17.0/m4/ltsugar.m4
rename to love/src/jni/mpg123-1.17.0/m4/ltsugar.m4
diff --git a/jni/mpg123-1.17.0/m4/ltversion.m4 b/love/src/jni/mpg123-1.17.0/m4/ltversion.m4
similarity index 100%
rename from jni/mpg123-1.17.0/m4/ltversion.m4
rename to love/src/jni/mpg123-1.17.0/m4/ltversion.m4
diff --git a/jni/mpg123-1.17.0/m4/lt~obsolete.m4 b/love/src/jni/mpg123-1.17.0/m4/lt~obsolete.m4
similarity index 100%
rename from jni/mpg123-1.17.0/m4/lt~obsolete.m4
rename to love/src/jni/mpg123-1.17.0/m4/lt~obsolete.m4
diff --git a/jni/mpg123-1.17.0/makedll.sh b/love/src/jni/mpg123-1.17.0/makedll.sh
similarity index 100%
rename from jni/mpg123-1.17.0/makedll.sh
rename to love/src/jni/mpg123-1.17.0/makedll.sh
diff --git a/jni/mpg123-1.17.0/man1/mpg123.1 b/love/src/jni/mpg123-1.17.0/man1/mpg123.1
similarity index 100%
rename from jni/mpg123-1.17.0/man1/mpg123.1
rename to love/src/jni/mpg123-1.17.0/man1/mpg123.1
diff --git a/jni/mpg123-1.17.0/mpg123.spec b/love/src/jni/mpg123-1.17.0/mpg123.spec
similarity index 100%
rename from jni/mpg123-1.17.0/mpg123.spec
rename to love/src/jni/mpg123-1.17.0/mpg123.spec
diff --git a/jni/mpg123-1.17.0/mpg123.spec.in b/love/src/jni/mpg123-1.17.0/mpg123.spec.in
similarity index 100%
rename from jni/mpg123-1.17.0/mpg123.spec.in
rename to love/src/jni/mpg123-1.17.0/mpg123.spec.in
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2005/libmpg123/libmpg123.vcproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2005/libmpg123/libmpg123.vcproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2005/libmpg123/libmpg123.vcproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2005/libmpg123/libmpg123.vcproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008/dump_seekindex/dump_seekindex.vcproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008/dump_seekindex/dump_seekindex.vcproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008/dump_seekindex/dump_seekindex.vcproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008/dump_seekindex/dump_seekindex.vcproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008/feedseek/feedseek.vcproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008/feedseek/feedseek.vcproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008/feedseek/feedseek.vcproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008/feedseek/feedseek.vcproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008/libmpg123/libmpg123.vcproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008/libmpg123/libmpg123.vcproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008/libmpg123/libmpg123.vcproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008/libmpg123/libmpg123.vcproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008/mpg123.sln b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008/mpg123.sln
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008/mpg123.sln
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008/mpg123.sln
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008/mpglib/mpglib.vcproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008/mpglib/mpglib.vcproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008/mpglib/mpglib.vcproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008/mpglib/mpglib.vcproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008/scan/scan.vcproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008/scan/scan.vcproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008/scan/scan.vcproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008/scan/scan.vcproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/2008clr.sln b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/2008clr.sln
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/2008clr.sln
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/2008clr.sln
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Program.cs b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Program.cs
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Program.cs
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Program.cs
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Properties/AssemblyInfo.cs b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Properties/AssemblyInfo.cs
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Properties/AssemblyInfo.cs
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Properties/AssemblyInfo.cs
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/ReplaceReaderclr/ReplaceReaderclr.csproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/ReplaceReaderclr/ReplaceReaderclr.csproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/ReplaceReaderclr/ReplaceReaderclr.csproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/ReplaceReaderclr/ReplaceReaderclr.csproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/feedseekclr/Program.cs b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/feedseekclr/Program.cs
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/feedseekclr/Program.cs
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/feedseekclr/Program.cs
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/feedseekclr/Properties/AssemblyInfo.cs b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/feedseekclr/Properties/AssemblyInfo.cs
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/feedseekclr/Properties/AssemblyInfo.cs
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/feedseekclr/Properties/AssemblyInfo.cs
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/feedseekclr/feedseekclr.csproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/feedseekclr/feedseekclr.csproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/feedseekclr/feedseekclr.csproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/feedseekclr/feedseekclr.csproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/scanclr/Program.cs b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/scanclr/Program.cs
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/scanclr/Program.cs
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/scanclr/Program.cs
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/scanclr/Properties/AssemblyInfo.cs b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/scanclr/Properties/AssemblyInfo.cs
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/scanclr/Properties/AssemblyInfo.cs
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/scanclr/Properties/AssemblyInfo.cs
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/scanclr/scanclr.csproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/scanclr/scanclr.csproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/scanclr/scanclr.csproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/examples/scanclr/scanclr.csproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/AssemblyInfo.cpp b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/AssemblyInfo.cpp
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/AssemblyInfo.cpp
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/AssemblyInfo.cpp
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/ReadMe.txt b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/ReadMe.txt
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/ReadMe.txt
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/ReadMe.txt
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/advanced.cpp b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/advanced.cpp
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/advanced.cpp
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/advanced.cpp
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/advanced.h b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/advanced.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/advanced.h
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/advanced.h
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/dllmain.cpp b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/dllmain.cpp
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/dllmain.cpp
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/dllmain.cpp
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/enum.h b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/enum.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/enum.h
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/enum.h
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/error.cpp b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/error.cpp
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/error.cpp
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/error.cpp
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/error.h b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/error.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/error.h
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/error.h
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v1.cpp b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v1.cpp
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v1.cpp
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v1.cpp
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v1.h b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v1.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v1.h
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v1.h
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v2.cpp b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v2.cpp
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v2.cpp
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v2.cpp
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v2.h b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v2.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v2.h
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/id3v2.h
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.cpp b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.cpp
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.cpp
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.cpp
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.h b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.h
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.h
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.rc b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.rc
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.rc
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.rc
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.vcproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.vcproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.vcproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/mpg123clr.vcproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/resource.h b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/resource.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/resource.h
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/resource.h
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/stdafx.cpp b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/stdafx.cpp
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/stdafx.cpp
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/stdafx.cpp
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/stdafx.h b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/stdafx.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/stdafx.h
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/stdafx.h
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/string.cpp b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/string.cpp
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/string.cpp
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/string.cpp
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/string.h b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/string.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/string.h
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/string.h
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/targetver.h b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/targetver.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/targetver.h
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/targetver.h
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/text.cpp b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/text.cpp
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/text.cpp
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/text.cpp
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/text.h b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/text.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/text.h
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2008clr/mpg123clr/text.h
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj.filters b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj.filters
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj.filters
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj.filters
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2010/feedseek/feedseek.vcxproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/feedseek/feedseek.vcxproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2010/feedseek/feedseek.vcxproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/feedseek/feedseek.vcxproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2010/feedseek/feedseek.vcxproj.filters b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/feedseek/feedseek.vcxproj.filters
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2010/feedseek/feedseek.vcxproj.filters
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/feedseek/feedseek.vcxproj.filters
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2010/mpg123.sln b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/mpg123.sln
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2010/mpg123.sln
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/mpg123.sln
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2010/scan/scan.vcxproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/scan/scan.vcxproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2010/scan/scan.vcxproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/scan/scan.vcxproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/2010/scan/scan.vcxproj.filters b/love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/scan/scan.vcxproj.filters
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/2010/scan/scan.vcxproj.filters
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/2010/scan/scan.vcxproj.filters
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/CORE/CORE_FileIn.H b/love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/CORE/CORE_FileIn.H
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/CORE/CORE_FileIn.H
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/CORE/CORE_FileIn.H
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/CORE/SourceFilter_MP3.H b/love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/CORE/SourceFilter_MP3.H
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/CORE/SourceFilter_MP3.H
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/CORE/SourceFilter_MP3.H
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_Def.H b/love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_Def.H
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_Def.H
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_Def.H
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_FileIn.H b/love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_FileIn.H
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_FileIn.H
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_FileIn.H
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/README b/love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/README
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/README
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/README
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/CORE_FileIn.CPP b/love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/CORE_FileIn.CPP
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/CORE_FileIn.CPP
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/CORE_FileIn.CPP
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/CORE_Log.CPP b/love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/CORE_Log.CPP
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/CORE_Log.CPP
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/CORE_Log.CPP
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/CORE_Mutex.CPP b/love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/CORE_Mutex.CPP
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/CORE_Mutex.CPP
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/CORE_Mutex.CPP
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/SourceFilter_MP3Stream.CPP b/love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/SourceFilter_MP3Stream.CPP
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/SourceFilter_MP3Stream.CPP
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/SOURCE/SourceFilter_MP3Stream.CPP
diff --git a/love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/libMPG123/PLACE_LIBMPG123_SOURCES_HERE b/love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/libMPG123/PLACE_LIBMPG123_SOURCES_HERE
new file mode 100644
index 00000000..e69de29b
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/libMPG123/libMPG123.vcproj b/love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/libMPG123/libMPG123.vcproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/libMPG123/libMPG123.vcproj
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/CMP3Stream/libMPG123/libMPG123.vcproj
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/config.h b/love/src/jni/mpg123-1.17.0/ports/MSVC++/config.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/config.h
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/config.h
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/examples/feedseek.c b/love/src/jni/mpg123-1.17.0/ports/MSVC++/examples/feedseek.c
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/examples/feedseek.c
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/examples/feedseek.c
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/examples/scan.c b/love/src/jni/mpg123-1.17.0/ports/MSVC++/examples/scan.c
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/examples/scan.c
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/examples/scan.c
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/mpg123.h b/love/src/jni/mpg123-1.17.0/ports/MSVC++/mpg123.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/mpg123.h
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/mpg123.h
diff --git a/jni/mpg123-1.17.0/ports/MSVC++/msvc.c b/love/src/jni/mpg123-1.17.0/ports/MSVC++/msvc.c
similarity index 100%
rename from jni/mpg123-1.17.0/ports/MSVC++/msvc.c
rename to love/src/jni/mpg123-1.17.0/ports/MSVC++/msvc.c
diff --git a/jni/mpg123-1.17.0/ports/README b/love/src/jni/mpg123-1.17.0/ports/README
similarity index 100%
rename from jni/mpg123-1.17.0/ports/README
rename to love/src/jni/mpg123-1.17.0/ports/README
diff --git a/jni/mpg123-1.17.0/ports/Sony_PSP/Makefile.psp b/love/src/jni/mpg123-1.17.0/ports/Sony_PSP/Makefile.psp
similarity index 100%
rename from jni/mpg123-1.17.0/ports/Sony_PSP/Makefile.psp
rename to love/src/jni/mpg123-1.17.0/ports/Sony_PSP/Makefile.psp
diff --git a/jni/mpg123-1.17.0/ports/Sony_PSP/README b/love/src/jni/mpg123-1.17.0/ports/Sony_PSP/README
similarity index 100%
rename from jni/mpg123-1.17.0/ports/Sony_PSP/README
rename to love/src/jni/mpg123-1.17.0/ports/Sony_PSP/README
diff --git a/jni/mpg123-1.17.0/ports/Sony_PSP/config.h b/love/src/jni/mpg123-1.17.0/ports/Sony_PSP/config.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/Sony_PSP/config.h
rename to love/src/jni/mpg123-1.17.0/ports/Sony_PSP/config.h
diff --git a/jni/mpg123-1.17.0/ports/Sony_PSP/readers.c.patch b/love/src/jni/mpg123-1.17.0/ports/Sony_PSP/readers.c.patch
similarity index 100%
rename from jni/mpg123-1.17.0/ports/Sony_PSP/readers.c.patch
rename to love/src/jni/mpg123-1.17.0/ports/Sony_PSP/readers.c.patch
diff --git a/jni/mpg123-1.17.0/ports/Xcode/config.h b/love/src/jni/mpg123-1.17.0/ports/Xcode/config.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/Xcode/config.h
rename to love/src/jni/mpg123-1.17.0/ports/Xcode/config.h
diff --git a/jni/mpg123-1.17.0/ports/Xcode/mpg123.h b/love/src/jni/mpg123-1.17.0/ports/Xcode/mpg123.h
similarity index 100%
rename from jni/mpg123-1.17.0/ports/Xcode/mpg123.h
rename to love/src/jni/mpg123-1.17.0/ports/Xcode/mpg123.h
diff --git a/jni/mpg123-1.17.0/ports/Xcode/mpg123.xcodeproj/project.pbxproj b/love/src/jni/mpg123-1.17.0/ports/Xcode/mpg123.xcodeproj/project.pbxproj
similarity index 100%
rename from jni/mpg123-1.17.0/ports/Xcode/mpg123.xcodeproj/project.pbxproj
rename to love/src/jni/mpg123-1.17.0/ports/Xcode/mpg123.xcodeproj/project.pbxproj
diff --git a/jni/mpg123-1.17.0/ports/mpg123_.pas b/love/src/jni/mpg123-1.17.0/ports/mpg123_.pas
similarity index 100%
rename from jni/mpg123-1.17.0/ports/mpg123_.pas
rename to love/src/jni/mpg123-1.17.0/ports/mpg123_.pas
diff --git a/jni/mpg123-1.17.0/scripts/benchmark-cpu.pl b/love/src/jni/mpg123-1.17.0/scripts/benchmark-cpu.pl
similarity index 100%
rename from jni/mpg123-1.17.0/scripts/benchmark-cpu.pl
rename to love/src/jni/mpg123-1.17.0/scripts/benchmark-cpu.pl
diff --git a/jni/mpg123-1.17.0/scripts/conplay b/love/src/jni/mpg123-1.17.0/scripts/conplay
similarity index 100%
rename from jni/mpg123-1.17.0/scripts/conplay
rename to love/src/jni/mpg123-1.17.0/scripts/conplay
diff --git a/jni/mpg123-1.17.0/scripts/mpg123info b/love/src/jni/mpg123-1.17.0/scripts/mpg123info
similarity index 100%
rename from jni/mpg123-1.17.0/scripts/mpg123info
rename to love/src/jni/mpg123-1.17.0/scripts/mpg123info
diff --git a/jni/mpg123-1.17.0/scripts/tag_lyrics.py b/love/src/jni/mpg123-1.17.0/scripts/tag_lyrics.py
similarity index 100%
rename from jni/mpg123-1.17.0/scripts/tag_lyrics.py
rename to love/src/jni/mpg123-1.17.0/scripts/tag_lyrics.py
diff --git a/jni/mpg123-1.17.0/src/Makefile b/love/src/jni/mpg123-1.17.0/src/Makefile
similarity index 100%
rename from jni/mpg123-1.17.0/src/Makefile
rename to love/src/jni/mpg123-1.17.0/src/Makefile
diff --git a/jni/mpg123-1.17.0/src/Makefile.am b/love/src/jni/mpg123-1.17.0/src/Makefile.am
similarity index 100%
rename from jni/mpg123-1.17.0/src/Makefile.am
rename to love/src/jni/mpg123-1.17.0/src/Makefile.am
diff --git a/jni/mpg123-1.17.0/src/Makefile.in b/love/src/jni/mpg123-1.17.0/src/Makefile.in
similarity index 100%
rename from jni/mpg123-1.17.0/src/Makefile.in
rename to love/src/jni/mpg123-1.17.0/src/Makefile.in
diff --git a/jni/mpg123-1.17.0/src/audio.c b/love/src/jni/mpg123-1.17.0/src/audio.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/audio.c
rename to love/src/jni/mpg123-1.17.0/src/audio.c
diff --git a/jni/mpg123-1.17.0/src/audio.h b/love/src/jni/mpg123-1.17.0/src/audio.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/audio.h
rename to love/src/jni/mpg123-1.17.0/src/audio.h
diff --git a/jni/mpg123-1.17.0/src/buffer.c b/love/src/jni/mpg123-1.17.0/src/buffer.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/buffer.c
rename to love/src/jni/mpg123-1.17.0/src/buffer.c
diff --git a/jni/mpg123-1.17.0/src/buffer.h b/love/src/jni/mpg123-1.17.0/src/buffer.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/buffer.h
rename to love/src/jni/mpg123-1.17.0/src/buffer.h
diff --git a/jni/mpg123-1.17.0/src/common.c b/love/src/jni/mpg123-1.17.0/src/common.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/common.c
rename to love/src/jni/mpg123-1.17.0/src/common.c
diff --git a/jni/mpg123-1.17.0/src/common.h b/love/src/jni/mpg123-1.17.0/src/common.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/common.h
rename to love/src/jni/mpg123-1.17.0/src/common.h
diff --git a/jni/mpg123-1.17.0/src/config.h b/love/src/jni/mpg123-1.17.0/src/config.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/config.h
rename to love/src/jni/mpg123-1.17.0/src/config.h
diff --git a/jni/mpg123-1.17.0/src/config.h.in b/love/src/jni/mpg123-1.17.0/src/config.h.in
similarity index 100%
rename from jni/mpg123-1.17.0/src/config.h.in
rename to love/src/jni/mpg123-1.17.0/src/config.h.in
diff --git a/jni/mpg123-1.17.0/src/control_generic.c b/love/src/jni/mpg123-1.17.0/src/control_generic.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/control_generic.c
rename to love/src/jni/mpg123-1.17.0/src/control_generic.c
diff --git a/jni/mpg123-1.17.0/src/equalizer.c b/love/src/jni/mpg123-1.17.0/src/equalizer.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/equalizer.c
rename to love/src/jni/mpg123-1.17.0/src/equalizer.c
diff --git a/jni/mpg123-1.17.0/src/genre.c b/love/src/jni/mpg123-1.17.0/src/genre.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/genre.c
rename to love/src/jni/mpg123-1.17.0/src/genre.c
diff --git a/jni/mpg123-1.17.0/src/genre.h b/love/src/jni/mpg123-1.17.0/src/genre.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/genre.h
rename to love/src/jni/mpg123-1.17.0/src/genre.h
diff --git a/jni/mpg123-1.17.0/src/getlopt.c b/love/src/jni/mpg123-1.17.0/src/getlopt.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/getlopt.c
rename to love/src/jni/mpg123-1.17.0/src/getlopt.c
diff --git a/jni/mpg123-1.17.0/src/getlopt.h b/love/src/jni/mpg123-1.17.0/src/getlopt.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/getlopt.h
rename to love/src/jni/mpg123-1.17.0/src/getlopt.h
diff --git a/jni/mpg123-1.17.0/src/httpget.c b/love/src/jni/mpg123-1.17.0/src/httpget.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/httpget.c
rename to love/src/jni/mpg123-1.17.0/src/httpget.c
diff --git a/jni/mpg123-1.17.0/src/httpget.h b/love/src/jni/mpg123-1.17.0/src/httpget.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/httpget.h
rename to love/src/jni/mpg123-1.17.0/src/httpget.h
diff --git a/jni/mpg123-1.17.0/src/legacy_module.c b/love/src/jni/mpg123-1.17.0/src/legacy_module.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/legacy_module.c
rename to love/src/jni/mpg123-1.17.0/src/legacy_module.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.exp b/love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.exp
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.exp
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.exp
diff --git a/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.la b/love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.la
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.la
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.la
diff --git a/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.lai b/love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.lai
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.lai
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.lai
diff --git a/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.so.0 b/love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.so.0
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.so.0
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.so.0
diff --git a/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.so.0.38.4 b/love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.so.0.38.4
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.so.0.38.4
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.so.0.38.4
diff --git a/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.ver b/love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.ver
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.ver
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/.libs/libmpg123.ver
diff --git a/jni/mpg123-1.17.0/src/libmpg123/Makefile b/love/src/jni/mpg123-1.17.0/src/libmpg123/Makefile
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/Makefile
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/Makefile
diff --git a/jni/mpg123-1.17.0/src/libmpg123/Makefile.am b/love/src/jni/mpg123-1.17.0/src/libmpg123/Makefile.am
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/Makefile.am
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/Makefile.am
diff --git a/jni/mpg123-1.17.0/src/libmpg123/Makefile.in b/love/src/jni/mpg123-1.17.0/src/libmpg123/Makefile.in
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/Makefile.in
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/Makefile.in
diff --git a/jni/mpg123-1.17.0/src/libmpg123/abi_align.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/abi_align.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/abi_align.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/abi_align.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/compat.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/compat.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/compat.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/compat.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/compat.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/compat.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/compat.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/compat.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/compat.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/compat.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/compat.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/compat.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct36_3dnow.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct36_3dnow.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct36_3dnow.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct36_3dnow.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct36_3dnowext.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct36_3dnowext.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct36_3dnowext.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct36_3dnowext.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct36_avx.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct36_avx.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct36_avx.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct36_avx.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct36_sse.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct36_sse.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct36_sse.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct36_sse.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct36_x86_64.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct36_x86_64.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct36_x86_64.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct36_x86_64.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_3dnow.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_3dnow.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_3dnow.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_3dnow.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_3dnowext.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_3dnowext.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_3dnowext.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_3dnowext.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_altivec.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_altivec.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_altivec.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_altivec.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_avx.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_avx.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_avx.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_avx.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_avx_float.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_avx_float.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_avx_float.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_avx_float.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_i386.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_i386.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_i386.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_i386.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_i486.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_i486.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_i486.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_i486.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_mmx.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_mmx.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_mmx.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_mmx.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_neon.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_neon.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_neon.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_neon.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_neon_float.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_neon_float.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_neon_float.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_neon_float.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_sse.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_sse.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_sse.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_sse.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_sse_float.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_sse_float.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_sse_float.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_sse_float.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_x86_64.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_x86_64.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_x86_64.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_x86_64.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dct64_x86_64_float.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_x86_64_float.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dct64_x86_64_float.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dct64_x86_64_float.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/debug.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/debug.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/debug.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/debug.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/decode.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/decode.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/decode.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/decode.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dither.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/dither.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dither.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dither.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/dither.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/dither.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/dither.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/dither.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/equalizer.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/equalizer.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/equalizer.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/equalizer.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/equalizer.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/equalizer.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/equalizer.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/equalizer.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/equalizer_3dnow.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/equalizer_3dnow.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/equalizer_3dnow.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/equalizer_3dnow.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/feature.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/feature.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/feature.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/feature.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/feature.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/feature.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/feature.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/feature.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/format.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/format.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/format.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/format.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/format.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/format.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/format.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/format.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/frame.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/frame.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/frame.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/frame.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/frame.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/frame.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/frame.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/frame.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/frame.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/frame.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/frame.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/frame.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/gapless.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/gapless.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/gapless.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/gapless.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/getbits.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/getbits.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/getbits.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/getbits.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/getcpuflags.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/getcpuflags.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/getcpuflags.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/getcpuflags.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/getcpuflags.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/getcpuflags.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/getcpuflags.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/getcpuflags.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/getcpuflags_x86_64.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/getcpuflags_x86_64.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/getcpuflags_x86_64.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/getcpuflags_x86_64.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/huffman.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/huffman.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/huffman.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/huffman.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/icy.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/icy.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/icy.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/icy.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/icy.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/icy.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/icy.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/icy.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/icy.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/icy.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/icy.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/icy.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/icy2utf8.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/icy2utf8.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/icy2utf8.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/icy2utf8.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/icy2utf8.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/icy2utf8.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/icy2utf8.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/icy2utf8.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/icy2utf8.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/icy2utf8.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/icy2utf8.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/icy2utf8.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/id3.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/id3.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/id3.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/id3.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/id3.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/id3.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/id3.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/id3.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/id3.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/id3.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/id3.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/id3.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/index.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/index.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/index.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/index.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/index.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/index.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/index.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/index.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/index.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/index.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/index.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/index.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/intsym.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/intsym.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/intsym.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/intsym.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/l12_integer_tables.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/l12_integer_tables.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/l12_integer_tables.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/l12_integer_tables.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/l2tables.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/l2tables.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/l2tables.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/l2tables.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/l3_integer_tables.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/l3_integer_tables.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/l3_integer_tables.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/l3_integer_tables.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/layer1.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/layer1.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/layer1.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/layer1.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/layer1.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/layer1.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/layer1.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/layer1.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/layer2.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/layer2.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/layer2.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/layer2.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/layer2.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/layer2.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/layer2.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/layer2.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/layer3.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/layer3.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/layer3.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/layer3.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/layer3.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/layer3.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/layer3.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/layer3.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/lfs_alias.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/lfs_alias.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/lfs_alias.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/lfs_alias.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/lfs_alias.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/lfs_alias.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/lfs_alias.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/lfs_alias.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/lfs_wrap.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/lfs_wrap.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/lfs_wrap.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/lfs_wrap.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/libmpg123.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/libmpg123.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/libmpg123.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/libmpg123.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/libmpg123.la b/love/src/jni/mpg123-1.17.0/src/libmpg123/libmpg123.la
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/libmpg123.la
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/libmpg123.la
diff --git a/jni/mpg123-1.17.0/src/libmpg123/libmpg123.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/libmpg123.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/libmpg123.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/libmpg123.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/mangle.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/mangle.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/mangle.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/mangle.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/mpeghead.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/mpeghead.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/mpeghead.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/mpeghead.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/mpg123.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/mpg123.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/mpg123.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/mpg123.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/mpg123.h.in b/love/src/jni/mpg123-1.17.0/src/libmpg123/mpg123.h.in
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/mpg123.h.in
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/mpg123.h.in
diff --git a/jni/mpg123-1.17.0/src/libmpg123/mpg123lib_intern.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/mpg123lib_intern.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/mpg123lib_intern.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/mpg123lib_intern.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/newhuffman.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/newhuffman.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/newhuffman.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/newhuffman.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/ntom.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/ntom.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/ntom.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/ntom.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/ntom.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/ntom.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/ntom.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/ntom.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/optimize.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/optimize.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/optimize.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/optimize.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/optimize.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/optimize.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/optimize.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/optimize.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/optimize.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/optimize.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/optimize.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/optimize.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/parse.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/parse.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/parse.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/parse.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/parse.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/parse.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/parse.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/parse.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/parse.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/parse.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/parse.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/parse.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/reader.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/reader.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/reader.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/reader.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/readers.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/readers.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/readers.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/readers.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/readers.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/readers.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/readers.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/readers.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/sample.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/sample.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/sample.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/sample.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/stringbuf.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/stringbuf.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/stringbuf.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/stringbuf.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/stringbuf.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/stringbuf.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/stringbuf.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/stringbuf.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_3dnow.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_3dnow.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_3dnow.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_3dnow.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_3dnowext.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_3dnowext.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_3dnowext.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_3dnowext.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_8bit.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_8bit.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_8bit.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_8bit.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_8bit.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_8bit.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_8bit.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_8bit.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_8bit.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_8bit.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_8bit.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_8bit.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_altivec.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_altivec.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_altivec.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_altivec.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_arm.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_arm.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_arm.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_arm.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_arm.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_arm.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_arm.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_arm.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_arm_accurate.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_arm_accurate.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_arm_accurate.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_arm_accurate.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_i486.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_i486.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_i486.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_i486.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_i586.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_i586.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_i586.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_i586.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_i586_dither.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_i586_dither.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_i586_dither.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_i586_dither.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_mmx.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_mmx.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_mmx.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_mmx.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_mono.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_mono.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_mono.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_mono.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_neon.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_neon.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_neon.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_neon.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_neon_accurate.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_neon_accurate.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_neon_accurate.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_neon_accurate.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_neon_float.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_neon_float.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_neon_float.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_neon_float.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_neon_s32.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_neon_s32.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_neon_s32.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_neon_s32.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_ntom.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_ntom.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_ntom.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_ntom.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_real.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_real.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_real.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_real.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_s32.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_s32.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_s32.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_s32.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_sse.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_sse.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_sse.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_sse.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_sse3d.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_sse3d.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_sse3d.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_sse3d.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_sse_accurate.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_sse_accurate.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_sse_accurate.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_sse_accurate.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_sse_float.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_sse_float.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_sse_float.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_sse_float.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_sse_s32.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_sse_s32.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_sse_s32.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_sse_s32.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx_accurate.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx_accurate.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx_accurate.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx_accurate.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx_float.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx_float.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx_float.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx_float.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx_s32.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx_s32.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx_s32.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_avx_s32.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon_accurate.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon_accurate.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon_accurate.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon_accurate.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon_float.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon_float.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon_float.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon_float.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon_s32.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon_s32.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon_s32.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_neon_s32.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_sse_accurate.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_sse_accurate.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_sse_accurate.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_sse_accurate.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_sse_float.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_sse_float.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_sse_float.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_sse_float.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_sse_s32.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_sse_s32.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_sse_s32.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_sse_s32.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64_accurate.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64_accurate.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64_accurate.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64_accurate.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64_float.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64_float.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64_float.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64_float.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64_s32.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64_s32.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64_s32.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_stereo_x86_64_s32.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_x86_64.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_x86_64.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_x86_64.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_x86_64.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_x86_64_accurate.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_x86_64_accurate.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_x86_64_accurate.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_x86_64_accurate.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_x86_64_float.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_x86_64_float.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_x86_64_float.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_x86_64_float.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synth_x86_64_s32.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/synth_x86_64_s32.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synth_x86_64_s32.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synth_x86_64_s32.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/synths.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/synths.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/synths.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/synths.h
diff --git a/jni/mpg123-1.17.0/src/libmpg123/tabinit.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/tabinit.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/tabinit.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/tabinit.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/tabinit.lo b/love/src/jni/mpg123-1.17.0/src/libmpg123/tabinit.lo
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/tabinit.lo
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/tabinit.lo
diff --git a/jni/mpg123-1.17.0/src/libmpg123/tabinit_mmx.S b/love/src/jni/mpg123-1.17.0/src/libmpg123/tabinit_mmx.S
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/tabinit_mmx.S
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/tabinit_mmx.S
diff --git a/jni/mpg123-1.17.0/src/libmpg123/testcpu.c b/love/src/jni/mpg123-1.17.0/src/libmpg123/testcpu.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/testcpu.c
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/testcpu.c
diff --git a/jni/mpg123-1.17.0/src/libmpg123/true.h b/love/src/jni/mpg123-1.17.0/src/libmpg123/true.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/libmpg123/true.h
rename to love/src/jni/mpg123-1.17.0/src/libmpg123/true.h
diff --git a/jni/mpg123-1.17.0/src/local.c b/love/src/jni/mpg123-1.17.0/src/local.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/local.c
rename to love/src/jni/mpg123-1.17.0/src/local.c
diff --git a/jni/mpg123-1.17.0/src/local.h b/love/src/jni/mpg123-1.17.0/src/local.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/local.h
rename to love/src/jni/mpg123-1.17.0/src/local.h
diff --git a/jni/mpg123-1.17.0/src/metaprint.c b/love/src/jni/mpg123-1.17.0/src/metaprint.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/metaprint.c
rename to love/src/jni/mpg123-1.17.0/src/metaprint.c
diff --git a/jni/mpg123-1.17.0/src/metaprint.h b/love/src/jni/mpg123-1.17.0/src/metaprint.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/metaprint.h
rename to love/src/jni/mpg123-1.17.0/src/metaprint.h
diff --git a/jni/mpg123-1.17.0/src/module.c b/love/src/jni/mpg123-1.17.0/src/module.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/module.c
rename to love/src/jni/mpg123-1.17.0/src/module.c
diff --git a/jni/mpg123-1.17.0/src/module.h b/love/src/jni/mpg123-1.17.0/src/module.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/module.h
rename to love/src/jni/mpg123-1.17.0/src/module.h
diff --git a/jni/mpg123-1.17.0/src/mpg123-id3dump.c b/love/src/jni/mpg123-1.17.0/src/mpg123-id3dump.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/mpg123-id3dump.c
rename to love/src/jni/mpg123-1.17.0/src/mpg123-id3dump.c
diff --git a/jni/mpg123-1.17.0/src/mpg123-strip.c b/love/src/jni/mpg123-1.17.0/src/mpg123-strip.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/mpg123-strip.c
rename to love/src/jni/mpg123-1.17.0/src/mpg123-strip.c
diff --git a/jni/mpg123-1.17.0/src/mpg123-with-modules b/love/src/jni/mpg123-1.17.0/src/mpg123-with-modules
similarity index 100%
rename from jni/mpg123-1.17.0/src/mpg123-with-modules
rename to love/src/jni/mpg123-1.17.0/src/mpg123-with-modules
diff --git a/jni/mpg123-1.17.0/src/mpg123.c b/love/src/jni/mpg123-1.17.0/src/mpg123.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/mpg123.c
rename to love/src/jni/mpg123-1.17.0/src/mpg123.c
diff --git a/jni/mpg123-1.17.0/src/mpg123app.h b/love/src/jni/mpg123-1.17.0/src/mpg123app.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/mpg123app.h
rename to love/src/jni/mpg123-1.17.0/src/mpg123app.h
diff --git a/jni/mpg123-1.17.0/src/output/Makefile b/love/src/jni/mpg123-1.17.0/src/output/Makefile
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/Makefile
rename to love/src/jni/mpg123-1.17.0/src/output/Makefile
diff --git a/jni/mpg123-1.17.0/src/output/Makefile.am b/love/src/jni/mpg123-1.17.0/src/output/Makefile.am
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/Makefile.am
rename to love/src/jni/mpg123-1.17.0/src/output/Makefile.am
diff --git a/jni/mpg123-1.17.0/src/output/Makefile.in b/love/src/jni/mpg123-1.17.0/src/output/Makefile.in
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/Makefile.in
rename to love/src/jni/mpg123-1.17.0/src/output/Makefile.in
diff --git a/jni/mpg123-1.17.0/src/output/aix.c b/love/src/jni/mpg123-1.17.0/src/output/aix.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/aix.c
rename to love/src/jni/mpg123-1.17.0/src/output/aix.c
diff --git a/jni/mpg123-1.17.0/src/output/alib.c b/love/src/jni/mpg123-1.17.0/src/output/alib.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/alib.c
rename to love/src/jni/mpg123-1.17.0/src/output/alib.c
diff --git a/jni/mpg123-1.17.0/src/output/alsa.c b/love/src/jni/mpg123-1.17.0/src/output/alsa.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/alsa.c
rename to love/src/jni/mpg123-1.17.0/src/output/alsa.c
diff --git a/jni/mpg123-1.17.0/src/output/arts.c b/love/src/jni/mpg123-1.17.0/src/output/arts.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/arts.c
rename to love/src/jni/mpg123-1.17.0/src/output/arts.c
diff --git a/jni/mpg123-1.17.0/src/output/coreaudio.c b/love/src/jni/mpg123-1.17.0/src/output/coreaudio.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/coreaudio.c
rename to love/src/jni/mpg123-1.17.0/src/output/coreaudio.c
diff --git a/jni/mpg123-1.17.0/src/output/dummy.c b/love/src/jni/mpg123-1.17.0/src/output/dummy.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/dummy.c
rename to love/src/jni/mpg123-1.17.0/src/output/dummy.c
diff --git a/jni/mpg123-1.17.0/src/output/esd.c b/love/src/jni/mpg123-1.17.0/src/output/esd.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/esd.c
rename to love/src/jni/mpg123-1.17.0/src/output/esd.c
diff --git a/jni/mpg123-1.17.0/src/output/hp.c b/love/src/jni/mpg123-1.17.0/src/output/hp.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/hp.c
rename to love/src/jni/mpg123-1.17.0/src/output/hp.c
diff --git a/jni/mpg123-1.17.0/src/output/jack.c b/love/src/jni/mpg123-1.17.0/src/output/jack.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/jack.c
rename to love/src/jni/mpg123-1.17.0/src/output/jack.c
diff --git a/jni/mpg123-1.17.0/src/output/mint.c b/love/src/jni/mpg123-1.17.0/src/output/mint.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/mint.c
rename to love/src/jni/mpg123-1.17.0/src/output/mint.c
diff --git a/jni/mpg123-1.17.0/src/output/nas.c b/love/src/jni/mpg123-1.17.0/src/output/nas.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/nas.c
rename to love/src/jni/mpg123-1.17.0/src/output/nas.c
diff --git a/jni/mpg123-1.17.0/src/output/openal.c b/love/src/jni/mpg123-1.17.0/src/output/openal.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/openal.c
rename to love/src/jni/mpg123-1.17.0/src/output/openal.c
diff --git a/jni/mpg123-1.17.0/src/output/os2.c b/love/src/jni/mpg123-1.17.0/src/output/os2.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/os2.c
rename to love/src/jni/mpg123-1.17.0/src/output/os2.c
diff --git a/jni/mpg123-1.17.0/src/output/oss.c b/love/src/jni/mpg123-1.17.0/src/output/oss.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/oss.c
rename to love/src/jni/mpg123-1.17.0/src/output/oss.c
diff --git a/jni/mpg123-1.17.0/src/output/portaudio.c b/love/src/jni/mpg123-1.17.0/src/output/portaudio.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/portaudio.c
rename to love/src/jni/mpg123-1.17.0/src/output/portaudio.c
diff --git a/jni/mpg123-1.17.0/src/output/pulse.c b/love/src/jni/mpg123-1.17.0/src/output/pulse.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/pulse.c
rename to love/src/jni/mpg123-1.17.0/src/output/pulse.c
diff --git a/jni/mpg123-1.17.0/src/output/qsa.c b/love/src/jni/mpg123-1.17.0/src/output/qsa.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/qsa.c
rename to love/src/jni/mpg123-1.17.0/src/output/qsa.c
diff --git a/jni/mpg123-1.17.0/src/output/sdl.c b/love/src/jni/mpg123-1.17.0/src/output/sdl.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/sdl.c
rename to love/src/jni/mpg123-1.17.0/src/output/sdl.c
diff --git a/jni/mpg123-1.17.0/src/output/sgi.c b/love/src/jni/mpg123-1.17.0/src/output/sgi.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/sgi.c
rename to love/src/jni/mpg123-1.17.0/src/output/sgi.c
diff --git a/jni/mpg123-1.17.0/src/output/sndio.c b/love/src/jni/mpg123-1.17.0/src/output/sndio.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/sndio.c
rename to love/src/jni/mpg123-1.17.0/src/output/sndio.c
diff --git a/jni/mpg123-1.17.0/src/output/sun.c b/love/src/jni/mpg123-1.17.0/src/output/sun.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/sun.c
rename to love/src/jni/mpg123-1.17.0/src/output/sun.c
diff --git a/jni/mpg123-1.17.0/src/output/tinyalsa.c b/love/src/jni/mpg123-1.17.0/src/output/tinyalsa.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/tinyalsa.c
rename to love/src/jni/mpg123-1.17.0/src/output/tinyalsa.c
diff --git a/jni/mpg123-1.17.0/src/output/win32.c b/love/src/jni/mpg123-1.17.0/src/output/win32.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/win32.c
rename to love/src/jni/mpg123-1.17.0/src/output/win32.c
diff --git a/jni/mpg123-1.17.0/src/output/win32_wasapi.c b/love/src/jni/mpg123-1.17.0/src/output/win32_wasapi.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/output/win32_wasapi.c
rename to love/src/jni/mpg123-1.17.0/src/output/win32_wasapi.c
diff --git a/jni/mpg123-1.17.0/src/playlist.c b/love/src/jni/mpg123-1.17.0/src/playlist.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/playlist.c
rename to love/src/jni/mpg123-1.17.0/src/playlist.c
diff --git a/jni/mpg123-1.17.0/src/playlist.h b/love/src/jni/mpg123-1.17.0/src/playlist.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/playlist.h
rename to love/src/jni/mpg123-1.17.0/src/playlist.h
diff --git a/jni/mpg123-1.17.0/src/resolver.c b/love/src/jni/mpg123-1.17.0/src/resolver.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/resolver.c
rename to love/src/jni/mpg123-1.17.0/src/resolver.c
diff --git a/jni/mpg123-1.17.0/src/resolver.h b/love/src/jni/mpg123-1.17.0/src/resolver.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/resolver.h
rename to love/src/jni/mpg123-1.17.0/src/resolver.h
diff --git a/jni/mpg123-1.17.0/src/sfifo.c b/love/src/jni/mpg123-1.17.0/src/sfifo.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/sfifo.c
rename to love/src/jni/mpg123-1.17.0/src/sfifo.c
diff --git a/jni/mpg123-1.17.0/src/sfifo.h b/love/src/jni/mpg123-1.17.0/src/sfifo.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/sfifo.h
rename to love/src/jni/mpg123-1.17.0/src/sfifo.h
diff --git a/jni/mpg123-1.17.0/src/stamp-h1 b/love/src/jni/mpg123-1.17.0/src/stamp-h1
similarity index 100%
rename from jni/mpg123-1.17.0/src/stamp-h1
rename to love/src/jni/mpg123-1.17.0/src/stamp-h1
diff --git a/jni/mpg123-1.17.0/src/streamdump.c b/love/src/jni/mpg123-1.17.0/src/streamdump.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/streamdump.c
rename to love/src/jni/mpg123-1.17.0/src/streamdump.c
diff --git a/jni/mpg123-1.17.0/src/streamdump.h b/love/src/jni/mpg123-1.17.0/src/streamdump.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/streamdump.h
rename to love/src/jni/mpg123-1.17.0/src/streamdump.h
diff --git a/jni/mpg123-1.17.0/src/term.c b/love/src/jni/mpg123-1.17.0/src/term.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/term.c
rename to love/src/jni/mpg123-1.17.0/src/term.c
diff --git a/jni/mpg123-1.17.0/src/term.h b/love/src/jni/mpg123-1.17.0/src/term.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/term.h
rename to love/src/jni/mpg123-1.17.0/src/term.h
diff --git a/jni/mpg123-1.17.0/src/tests/noise.c b/love/src/jni/mpg123-1.17.0/src/tests/noise.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/tests/noise.c
rename to love/src/jni/mpg123-1.17.0/src/tests/noise.c
diff --git a/jni/mpg123-1.17.0/src/tests/plain_id3.c b/love/src/jni/mpg123-1.17.0/src/tests/plain_id3.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/tests/plain_id3.c
rename to love/src/jni/mpg123-1.17.0/src/tests/plain_id3.c
diff --git a/jni/mpg123-1.17.0/src/tests/seek_whence.c b/love/src/jni/mpg123-1.17.0/src/tests/seek_whence.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/tests/seek_whence.c
rename to love/src/jni/mpg123-1.17.0/src/tests/seek_whence.c
diff --git a/jni/mpg123-1.17.0/src/tests/testtext.h b/love/src/jni/mpg123-1.17.0/src/tests/testtext.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/tests/testtext.h
rename to love/src/jni/mpg123-1.17.0/src/tests/testtext.h
diff --git a/jni/mpg123-1.17.0/src/tests/text.c b/love/src/jni/mpg123-1.17.0/src/tests/text.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/tests/text.c
rename to love/src/jni/mpg123-1.17.0/src/tests/text.c
diff --git a/jni/mpg123-1.17.0/src/wav.c b/love/src/jni/mpg123-1.17.0/src/wav.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/wav.c
rename to love/src/jni/mpg123-1.17.0/src/wav.c
diff --git a/jni/mpg123-1.17.0/src/wavhead.h b/love/src/jni/mpg123-1.17.0/src/wavhead.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/wavhead.h
rename to love/src/jni/mpg123-1.17.0/src/wavhead.h
diff --git a/jni/mpg123-1.17.0/src/win32_net.c b/love/src/jni/mpg123-1.17.0/src/win32_net.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/win32_net.c
rename to love/src/jni/mpg123-1.17.0/src/win32_net.c
diff --git a/jni/mpg123-1.17.0/src/win32_support.c b/love/src/jni/mpg123-1.17.0/src/win32_support.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/win32_support.c
rename to love/src/jni/mpg123-1.17.0/src/win32_support.c
diff --git a/jni/mpg123-1.17.0/src/win32_support.h b/love/src/jni/mpg123-1.17.0/src/win32_support.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/win32_support.h
rename to love/src/jni/mpg123-1.17.0/src/win32_support.h
diff --git a/jni/mpg123-1.17.0/src/xfermem.c b/love/src/jni/mpg123-1.17.0/src/xfermem.c
similarity index 100%
rename from jni/mpg123-1.17.0/src/xfermem.c
rename to love/src/jni/mpg123-1.17.0/src/xfermem.c
diff --git a/jni/mpg123-1.17.0/src/xfermem.h b/love/src/jni/mpg123-1.17.0/src/xfermem.h
similarity index 100%
rename from jni/mpg123-1.17.0/src/xfermem.h
rename to love/src/jni/mpg123-1.17.0/src/xfermem.h
diff --git a/jni/mpg123-1.17.0/windows-builds.sh b/love/src/jni/mpg123-1.17.0/windows-builds.sh
similarity index 100%
rename from jni/mpg123-1.17.0/windows-builds.sh
rename to love/src/jni/mpg123-1.17.0/windows-builds.sh
diff --git a/jni/openal-soft-1.17.0/Alc/ALc.c b/love/src/jni/openal-soft-1.17.0/Alc/ALc.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/ALc.c
rename to love/src/jni/openal-soft-1.17.0/Alc/ALc.c
diff --git a/jni/openal-soft-1.17.0/Alc/ALu.c b/love/src/jni/openal-soft-1.17.0/Alc/ALu.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/ALu.c
rename to love/src/jni/openal-soft-1.17.0/Alc/ALu.c
diff --git a/jni/openal-soft-1.17.0/Alc/alcConfig.c b/love/src/jni/openal-soft-1.17.0/Alc/alcConfig.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/alcConfig.c
rename to love/src/jni/openal-soft-1.17.0/Alc/alcConfig.c
diff --git a/jni/openal-soft-1.17.0/Alc/alcRing.c b/love/src/jni/openal-soft-1.17.0/Alc/alcRing.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/alcRing.c
rename to love/src/jni/openal-soft-1.17.0/Alc/alcRing.c
diff --git a/jni/openal-soft-1.17.0/Alc/alstring.h b/love/src/jni/openal-soft-1.17.0/Alc/alstring.h
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/alstring.h
rename to love/src/jni/openal-soft-1.17.0/Alc/alstring.h
diff --git a/jni/openal-soft-1.17.0/Alc/backends/alsa.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/alsa.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/alsa.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/alsa.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/base.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/base.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/base.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/base.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/base.h b/love/src/jni/openal-soft-1.17.0/Alc/backends/base.h
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/base.h
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/base.h
diff --git a/jni/openal-soft-1.17.0/Alc/backends/coreaudio.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/coreaudio.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/coreaudio.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/coreaudio.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/dsound.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/dsound.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/dsound.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/dsound.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/loopback.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/loopback.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/loopback.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/loopback.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/mmdevapi.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/mmdevapi.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/mmdevapi.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/mmdevapi.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/null.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/null.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/null.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/null.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/opensl.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/opensl.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/opensl.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/opensl.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/oss.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/oss.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/oss.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/oss.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/portaudio.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/portaudio.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/portaudio.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/portaudio.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/pulseaudio.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/pulseaudio.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/pulseaudio.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/pulseaudio.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/qsa.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/qsa.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/qsa.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/qsa.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/sndio.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/sndio.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/sndio.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/sndio.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/solaris.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/solaris.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/solaris.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/solaris.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/wave.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/wave.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/wave.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/wave.c
diff --git a/jni/openal-soft-1.17.0/Alc/backends/winmm.c b/love/src/jni/openal-soft-1.17.0/Alc/backends/winmm.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/backends/winmm.c
rename to love/src/jni/openal-soft-1.17.0/Alc/backends/winmm.c
diff --git a/jni/openal-soft-1.17.0/Alc/bs2b.c b/love/src/jni/openal-soft-1.17.0/Alc/bs2b.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/bs2b.c
rename to love/src/jni/openal-soft-1.17.0/Alc/bs2b.c
diff --git a/jni/openal-soft-1.17.0/Alc/compat.h b/love/src/jni/openal-soft-1.17.0/Alc/compat.h
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/compat.h
rename to love/src/jni/openal-soft-1.17.0/Alc/compat.h
diff --git a/jni/openal-soft-1.17.0/Alc/effects/autowah.c b/love/src/jni/openal-soft-1.17.0/Alc/effects/autowah.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/effects/autowah.c
rename to love/src/jni/openal-soft-1.17.0/Alc/effects/autowah.c
diff --git a/jni/openal-soft-1.17.0/Alc/effects/chorus.c b/love/src/jni/openal-soft-1.17.0/Alc/effects/chorus.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/effects/chorus.c
rename to love/src/jni/openal-soft-1.17.0/Alc/effects/chorus.c
diff --git a/jni/openal-soft-1.17.0/Alc/effects/compressor.c b/love/src/jni/openal-soft-1.17.0/Alc/effects/compressor.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/effects/compressor.c
rename to love/src/jni/openal-soft-1.17.0/Alc/effects/compressor.c
diff --git a/jni/openal-soft-1.17.0/Alc/effects/dedicated.c b/love/src/jni/openal-soft-1.17.0/Alc/effects/dedicated.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/effects/dedicated.c
rename to love/src/jni/openal-soft-1.17.0/Alc/effects/dedicated.c
diff --git a/jni/openal-soft-1.17.0/Alc/effects/distortion.c b/love/src/jni/openal-soft-1.17.0/Alc/effects/distortion.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/effects/distortion.c
rename to love/src/jni/openal-soft-1.17.0/Alc/effects/distortion.c
diff --git a/jni/openal-soft-1.17.0/Alc/effects/echo.c b/love/src/jni/openal-soft-1.17.0/Alc/effects/echo.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/effects/echo.c
rename to love/src/jni/openal-soft-1.17.0/Alc/effects/echo.c
diff --git a/jni/openal-soft-1.17.0/Alc/effects/equalizer.c b/love/src/jni/openal-soft-1.17.0/Alc/effects/equalizer.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/effects/equalizer.c
rename to love/src/jni/openal-soft-1.17.0/Alc/effects/equalizer.c
diff --git a/jni/openal-soft-1.17.0/Alc/effects/flanger.c b/love/src/jni/openal-soft-1.17.0/Alc/effects/flanger.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/effects/flanger.c
rename to love/src/jni/openal-soft-1.17.0/Alc/effects/flanger.c
diff --git a/jni/openal-soft-1.17.0/Alc/effects/modulator.c b/love/src/jni/openal-soft-1.17.0/Alc/effects/modulator.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/effects/modulator.c
rename to love/src/jni/openal-soft-1.17.0/Alc/effects/modulator.c
diff --git a/jni/openal-soft-1.17.0/Alc/effects/null.c b/love/src/jni/openal-soft-1.17.0/Alc/effects/null.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/effects/null.c
rename to love/src/jni/openal-soft-1.17.0/Alc/effects/null.c
diff --git a/jni/openal-soft-1.17.0/Alc/effects/reverb.c b/love/src/jni/openal-soft-1.17.0/Alc/effects/reverb.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/effects/reverb.c
rename to love/src/jni/openal-soft-1.17.0/Alc/effects/reverb.c
diff --git a/jni/openal-soft-1.17.0/Alc/evtqueue.h b/love/src/jni/openal-soft-1.17.0/Alc/evtqueue.h
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/evtqueue.h
rename to love/src/jni/openal-soft-1.17.0/Alc/evtqueue.h
diff --git a/jni/openal-soft-1.17.0/Alc/helpers.c b/love/src/jni/openal-soft-1.17.0/Alc/helpers.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/helpers.c
rename to love/src/jni/openal-soft-1.17.0/Alc/helpers.c
diff --git a/jni/openal-soft-1.17.0/Alc/hrtf.c b/love/src/jni/openal-soft-1.17.0/Alc/hrtf.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/hrtf.c
rename to love/src/jni/openal-soft-1.17.0/Alc/hrtf.c
diff --git a/jni/openal-soft-1.17.0/Alc/hrtf.h b/love/src/jni/openal-soft-1.17.0/Alc/hrtf.h
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/hrtf.h
rename to love/src/jni/openal-soft-1.17.0/Alc/hrtf.h
diff --git a/jni/openal-soft-1.17.0/Alc/midi/base.c b/love/src/jni/openal-soft-1.17.0/Alc/midi/base.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/midi/base.c
rename to love/src/jni/openal-soft-1.17.0/Alc/midi/base.c
diff --git a/jni/openal-soft-1.17.0/Alc/midi/base.h b/love/src/jni/openal-soft-1.17.0/Alc/midi/base.h
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/midi/base.h
rename to love/src/jni/openal-soft-1.17.0/Alc/midi/base.h
diff --git a/jni/openal-soft-1.17.0/Alc/midi/dummy.c b/love/src/jni/openal-soft-1.17.0/Alc/midi/dummy.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/midi/dummy.c
rename to love/src/jni/openal-soft-1.17.0/Alc/midi/dummy.c
diff --git a/jni/openal-soft-1.17.0/Alc/midi/fluidsynth.c b/love/src/jni/openal-soft-1.17.0/Alc/midi/fluidsynth.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/midi/fluidsynth.c
rename to love/src/jni/openal-soft-1.17.0/Alc/midi/fluidsynth.c
diff --git a/jni/openal-soft-1.17.0/Alc/midi/sf2load.c b/love/src/jni/openal-soft-1.17.0/Alc/midi/sf2load.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/midi/sf2load.c
rename to love/src/jni/openal-soft-1.17.0/Alc/midi/sf2load.c
diff --git a/jni/openal-soft-1.17.0/Alc/midi/soft.c b/love/src/jni/openal-soft-1.17.0/Alc/midi/soft.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/midi/soft.c
rename to love/src/jni/openal-soft-1.17.0/Alc/midi/soft.c
diff --git a/jni/openal-soft-1.17.0/Alc/mixer.c b/love/src/jni/openal-soft-1.17.0/Alc/mixer.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/mixer.c
rename to love/src/jni/openal-soft-1.17.0/Alc/mixer.c
diff --git a/jni/openal-soft-1.17.0/Alc/mixer_c.c b/love/src/jni/openal-soft-1.17.0/Alc/mixer_c.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/mixer_c.c
rename to love/src/jni/openal-soft-1.17.0/Alc/mixer_c.c
diff --git a/jni/openal-soft-1.17.0/Alc/mixer_defs.h b/love/src/jni/openal-soft-1.17.0/Alc/mixer_defs.h
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/mixer_defs.h
rename to love/src/jni/openal-soft-1.17.0/Alc/mixer_defs.h
diff --git a/jni/openal-soft-1.17.0/Alc/mixer_inc.c b/love/src/jni/openal-soft-1.17.0/Alc/mixer_inc.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/mixer_inc.c
rename to love/src/jni/openal-soft-1.17.0/Alc/mixer_inc.c
diff --git a/jni/openal-soft-1.17.0/Alc/mixer_neon.c b/love/src/jni/openal-soft-1.17.0/Alc/mixer_neon.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/mixer_neon.c
rename to love/src/jni/openal-soft-1.17.0/Alc/mixer_neon.c
diff --git a/jni/openal-soft-1.17.0/Alc/mixer_sse.c b/love/src/jni/openal-soft-1.17.0/Alc/mixer_sse.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/mixer_sse.c
rename to love/src/jni/openal-soft-1.17.0/Alc/mixer_sse.c
diff --git a/jni/openal-soft-1.17.0/Alc/mixer_sse2.c b/love/src/jni/openal-soft-1.17.0/Alc/mixer_sse2.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/mixer_sse2.c
rename to love/src/jni/openal-soft-1.17.0/Alc/mixer_sse2.c
diff --git a/jni/openal-soft-1.17.0/Alc/mixer_sse41.c b/love/src/jni/openal-soft-1.17.0/Alc/mixer_sse41.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/mixer_sse41.c
rename to love/src/jni/openal-soft-1.17.0/Alc/mixer_sse41.c
diff --git a/jni/openal-soft-1.17.0/Alc/panning.c b/love/src/jni/openal-soft-1.17.0/Alc/panning.c
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/panning.c
rename to love/src/jni/openal-soft-1.17.0/Alc/panning.c
diff --git a/jni/openal-soft-1.17.0/Alc/vector.h b/love/src/jni/openal-soft-1.17.0/Alc/vector.h
similarity index 100%
rename from jni/openal-soft-1.17.0/Alc/vector.h
rename to love/src/jni/openal-soft-1.17.0/Alc/vector.h
diff --git a/jni/openal-soft-1.17.0/Android.mk b/love/src/jni/openal-soft-1.17.0/Android.mk
similarity index 100%
rename from jni/openal-soft-1.17.0/Android.mk
rename to love/src/jni/openal-soft-1.17.0/Android.mk
diff --git a/jni/openal-soft-1.17.0/CMakeLists.txt b/love/src/jni/openal-soft-1.17.0/CMakeLists.txt
similarity index 100%
rename from jni/openal-soft-1.17.0/CMakeLists.txt
rename to love/src/jni/openal-soft-1.17.0/CMakeLists.txt
diff --git a/jni/openal-soft-1.17.0/COPYING b/love/src/jni/openal-soft-1.17.0/COPYING
similarity index 100%
rename from jni/openal-soft-1.17.0/COPYING
rename to love/src/jni/openal-soft-1.17.0/COPYING
diff --git a/jni/openal-soft-1.17.0/OpenAL32/Include/alAuxEffectSlot.h b/love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alAuxEffectSlot.h
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/Include/alAuxEffectSlot.h
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alAuxEffectSlot.h
diff --git a/jni/openal-soft-1.17.0/OpenAL32/Include/alBuffer.h b/love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alBuffer.h
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/Include/alBuffer.h
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alBuffer.h
diff --git a/jni/openal-soft-1.17.0/OpenAL32/Include/alEffect.h b/love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alEffect.h
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/Include/alEffect.h
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alEffect.h
diff --git a/jni/openal-soft-1.17.0/OpenAL32/Include/alError.h b/love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alError.h
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/Include/alError.h
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alError.h
diff --git a/jni/openal-soft-1.17.0/OpenAL32/Include/alFilter.h b/love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alFilter.h
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/Include/alFilter.h
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alFilter.h
diff --git a/jni/openal-soft-1.17.0/OpenAL32/Include/alListener.h b/love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alListener.h
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/Include/alListener.h
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alListener.h
diff --git a/jni/openal-soft-1.17.0/OpenAL32/Include/alMain.h b/love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alMain.h
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/Include/alMain.h
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alMain.h
diff --git a/jni/openal-soft-1.17.0/OpenAL32/Include/alMidi.h b/love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alMidi.h
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/Include/alMidi.h
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alMidi.h
diff --git a/jni/openal-soft-1.17.0/OpenAL32/Include/alSource.h b/love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alSource.h
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/Include/alSource.h
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alSource.h
diff --git a/jni/openal-soft-1.17.0/OpenAL32/Include/alThunk.h b/love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alThunk.h
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/Include/alThunk.h
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alThunk.h
diff --git a/jni/openal-soft-1.17.0/OpenAL32/Include/alu.h b/love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alu.h
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/Include/alu.h
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/Include/alu.h
diff --git a/jni/openal-soft-1.17.0/OpenAL32/Include/bs2b.h b/love/src/jni/openal-soft-1.17.0/OpenAL32/Include/bs2b.h
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/Include/bs2b.h
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/Include/bs2b.h
diff --git a/jni/openal-soft-1.17.0/OpenAL32/Include/sample_cvt.h b/love/src/jni/openal-soft-1.17.0/OpenAL32/Include/sample_cvt.h
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/Include/sample_cvt.h
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/Include/sample_cvt.h
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alAuxEffectSlot.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alAuxEffectSlot.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alAuxEffectSlot.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alAuxEffectSlot.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alBuffer.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alBuffer.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alBuffer.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alBuffer.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alEffect.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alEffect.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alEffect.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alEffect.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alError.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alError.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alError.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alError.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alExtension.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alExtension.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alExtension.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alExtension.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alFilter.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alFilter.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alFilter.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alFilter.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alFontsound.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alFontsound.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alFontsound.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alFontsound.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alListener.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alListener.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alListener.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alListener.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alMidi.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alMidi.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alMidi.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alMidi.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alPreset.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alPreset.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alPreset.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alPreset.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alSoundfont.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alSoundfont.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alSoundfont.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alSoundfont.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alSource.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alSource.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alSource.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alSource.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alState.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alState.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alState.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alState.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/alThunk.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/alThunk.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/alThunk.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/alThunk.c
diff --git a/jni/openal-soft-1.17.0/OpenAL32/sample_cvt.c b/love/src/jni/openal-soft-1.17.0/OpenAL32/sample_cvt.c
similarity index 100%
rename from jni/openal-soft-1.17.0/OpenAL32/sample_cvt.c
rename to love/src/jni/openal-soft-1.17.0/OpenAL32/sample_cvt.c
diff --git a/jni/openal-soft-1.17.0/README b/love/src/jni/openal-soft-1.17.0/README
similarity index 100%
rename from jni/openal-soft-1.17.0/README
rename to love/src/jni/openal-soft-1.17.0/README
diff --git a/jni/openal-soft-1.17.0/XCompile.txt b/love/src/jni/openal-soft-1.17.0/XCompile.txt
similarity index 100%
rename from jni/openal-soft-1.17.0/XCompile.txt
rename to love/src/jni/openal-soft-1.17.0/XCompile.txt
diff --git a/jni/openal-soft-1.17.0/alsoftrc.sample b/love/src/jni/openal-soft-1.17.0/alsoftrc.sample
similarity index 100%
rename from jni/openal-soft-1.17.0/alsoftrc.sample
rename to love/src/jni/openal-soft-1.17.0/alsoftrc.sample
diff --git a/love/src/jni/openal-soft-1.17.0/build/.empty b/love/src/jni/openal-soft-1.17.0/build/.empty
new file mode 100644
index 00000000..e69de29b
diff --git a/jni/openal-soft-1.17.0/cmake/CheckFileOffsetBits.c b/love/src/jni/openal-soft-1.17.0/cmake/CheckFileOffsetBits.c
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/CheckFileOffsetBits.c
rename to love/src/jni/openal-soft-1.17.0/cmake/CheckFileOffsetBits.c
diff --git a/jni/openal-soft-1.17.0/cmake/CheckFileOffsetBits.cmake b/love/src/jni/openal-soft-1.17.0/cmake/CheckFileOffsetBits.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/CheckFileOffsetBits.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/CheckFileOffsetBits.cmake
diff --git a/jni/openal-soft-1.17.0/cmake/CheckSharedFunctionExists.cmake b/love/src/jni/openal-soft-1.17.0/cmake/CheckSharedFunctionExists.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/CheckSharedFunctionExists.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/CheckSharedFunctionExists.cmake
diff --git a/jni/openal-soft-1.17.0/cmake/FindALSA.cmake b/love/src/jni/openal-soft-1.17.0/cmake/FindALSA.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/FindALSA.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/FindALSA.cmake
diff --git a/jni/openal-soft-1.17.0/cmake/FindAudioIO.cmake b/love/src/jni/openal-soft-1.17.0/cmake/FindAudioIO.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/FindAudioIO.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/FindAudioIO.cmake
diff --git a/jni/openal-soft-1.17.0/cmake/FindDSound.cmake b/love/src/jni/openal-soft-1.17.0/cmake/FindDSound.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/FindDSound.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/FindDSound.cmake
diff --git a/jni/openal-soft-1.17.0/cmake/FindFFmpeg.cmake b/love/src/jni/openal-soft-1.17.0/cmake/FindFFmpeg.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/FindFFmpeg.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/FindFFmpeg.cmake
diff --git a/jni/openal-soft-1.17.0/cmake/FindFluidSynth.cmake b/love/src/jni/openal-soft-1.17.0/cmake/FindFluidSynth.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/FindFluidSynth.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/FindFluidSynth.cmake
diff --git a/jni/openal-soft-1.17.0/cmake/FindOSS.cmake b/love/src/jni/openal-soft-1.17.0/cmake/FindOSS.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/FindOSS.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/FindOSS.cmake
diff --git a/jni/openal-soft-1.17.0/cmake/FindPortAudio.cmake b/love/src/jni/openal-soft-1.17.0/cmake/FindPortAudio.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/FindPortAudio.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/FindPortAudio.cmake
diff --git a/jni/openal-soft-1.17.0/cmake/FindPulseAudio.cmake b/love/src/jni/openal-soft-1.17.0/cmake/FindPulseAudio.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/FindPulseAudio.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/FindPulseAudio.cmake
diff --git a/jni/openal-soft-1.17.0/cmake/FindQSA.cmake b/love/src/jni/openal-soft-1.17.0/cmake/FindQSA.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/FindQSA.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/FindQSA.cmake
diff --git a/jni/openal-soft-1.17.0/cmake/FindSDL2.cmake b/love/src/jni/openal-soft-1.17.0/cmake/FindSDL2.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/FindSDL2.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/FindSDL2.cmake
diff --git a/jni/openal-soft-1.17.0/cmake/FindSDL_sound.cmake b/love/src/jni/openal-soft-1.17.0/cmake/FindSDL_sound.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/FindSDL_sound.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/FindSDL_sound.cmake
diff --git a/jni/openal-soft-1.17.0/cmake/FindSoundIO.cmake b/love/src/jni/openal-soft-1.17.0/cmake/FindSoundIO.cmake
similarity index 100%
rename from jni/openal-soft-1.17.0/cmake/FindSoundIO.cmake
rename to love/src/jni/openal-soft-1.17.0/cmake/FindSoundIO.cmake
diff --git a/jni/openal-soft-1.17.0/common/atomic.c b/love/src/jni/openal-soft-1.17.0/common/atomic.c
similarity index 100%
rename from jni/openal-soft-1.17.0/common/atomic.c
rename to love/src/jni/openal-soft-1.17.0/common/atomic.c
diff --git a/jni/openal-soft-1.17.0/common/rwlock.c b/love/src/jni/openal-soft-1.17.0/common/rwlock.c
similarity index 100%
rename from jni/openal-soft-1.17.0/common/rwlock.c
rename to love/src/jni/openal-soft-1.17.0/common/rwlock.c
diff --git a/jni/openal-soft-1.17.0/common/threads.c b/love/src/jni/openal-soft-1.17.0/common/threads.c
similarity index 100%
rename from jni/openal-soft-1.17.0/common/threads.c
rename to love/src/jni/openal-soft-1.17.0/common/threads.c
diff --git a/jni/openal-soft-1.17.0/common/uintmap.c b/love/src/jni/openal-soft-1.17.0/common/uintmap.c
similarity index 100%
rename from jni/openal-soft-1.17.0/common/uintmap.c
rename to love/src/jni/openal-soft-1.17.0/common/uintmap.c
diff --git a/jni/openal-soft-1.17.0/config.h b/love/src/jni/openal-soft-1.17.0/config.h
similarity index 100%
rename from jni/openal-soft-1.17.0/config.h
rename to love/src/jni/openal-soft-1.17.0/config.h
diff --git a/jni/openal-soft-1.17.0/config.h.in b/love/src/jni/openal-soft-1.17.0/config.h.in
similarity index 100%
rename from jni/openal-soft-1.17.0/config.h.in
rename to love/src/jni/openal-soft-1.17.0/config.h.in
diff --git a/jni/openal-soft-1.17.0/env-vars.txt b/love/src/jni/openal-soft-1.17.0/env-vars.txt
similarity index 100%
rename from jni/openal-soft-1.17.0/env-vars.txt
rename to love/src/jni/openal-soft-1.17.0/env-vars.txt
diff --git a/jni/openal-soft-1.17.0/examples/alffplay.c b/love/src/jni/openal-soft-1.17.0/examples/alffplay.c
similarity index 100%
rename from jni/openal-soft-1.17.0/examples/alffplay.c
rename to love/src/jni/openal-soft-1.17.0/examples/alffplay.c
diff --git a/jni/openal-soft-1.17.0/examples/allatency.c b/love/src/jni/openal-soft-1.17.0/examples/allatency.c
similarity index 100%
rename from jni/openal-soft-1.17.0/examples/allatency.c
rename to love/src/jni/openal-soft-1.17.0/examples/allatency.c
diff --git a/jni/openal-soft-1.17.0/examples/alloopback.c b/love/src/jni/openal-soft-1.17.0/examples/alloopback.c
similarity index 100%
rename from jni/openal-soft-1.17.0/examples/alloopback.c
rename to love/src/jni/openal-soft-1.17.0/examples/alloopback.c
diff --git a/jni/openal-soft-1.17.0/examples/alreverb.c b/love/src/jni/openal-soft-1.17.0/examples/alreverb.c
similarity index 100%
rename from jni/openal-soft-1.17.0/examples/alreverb.c
rename to love/src/jni/openal-soft-1.17.0/examples/alreverb.c
diff --git a/jni/openal-soft-1.17.0/examples/alstream.c b/love/src/jni/openal-soft-1.17.0/examples/alstream.c
similarity index 100%
rename from jni/openal-soft-1.17.0/examples/alstream.c
rename to love/src/jni/openal-soft-1.17.0/examples/alstream.c
diff --git a/jni/openal-soft-1.17.0/examples/common/alhelpers.c b/love/src/jni/openal-soft-1.17.0/examples/common/alhelpers.c
similarity index 100%
rename from jni/openal-soft-1.17.0/examples/common/alhelpers.c
rename to love/src/jni/openal-soft-1.17.0/examples/common/alhelpers.c
diff --git a/jni/openal-soft-1.17.0/examples/common/alhelpers.h b/love/src/jni/openal-soft-1.17.0/examples/common/alhelpers.h
similarity index 100%
rename from jni/openal-soft-1.17.0/examples/common/alhelpers.h
rename to love/src/jni/openal-soft-1.17.0/examples/common/alhelpers.h
diff --git a/jni/openal-soft-1.17.0/examples/common/sdl_sound.c b/love/src/jni/openal-soft-1.17.0/examples/common/sdl_sound.c
similarity index 100%
rename from jni/openal-soft-1.17.0/examples/common/sdl_sound.c
rename to love/src/jni/openal-soft-1.17.0/examples/common/sdl_sound.c
diff --git a/jni/openal-soft-1.17.0/examples/common/sdl_sound.h b/love/src/jni/openal-soft-1.17.0/examples/common/sdl_sound.h
similarity index 100%
rename from jni/openal-soft-1.17.0/examples/common/sdl_sound.h
rename to love/src/jni/openal-soft-1.17.0/examples/common/sdl_sound.h
diff --git a/jni/openal-soft-1.17.0/hrtf.txt b/love/src/jni/openal-soft-1.17.0/hrtf.txt
similarity index 100%
rename from jni/openal-soft-1.17.0/hrtf.txt
rename to love/src/jni/openal-soft-1.17.0/hrtf.txt
diff --git a/jni/openal-soft-1.17.0/hrtf/default-44100.mhr b/love/src/jni/openal-soft-1.17.0/hrtf/default-44100.mhr
similarity index 100%
rename from jni/openal-soft-1.17.0/hrtf/default-44100.mhr
rename to love/src/jni/openal-soft-1.17.0/hrtf/default-44100.mhr
diff --git a/jni/openal-soft-1.17.0/hrtf/default-48000.mhr b/love/src/jni/openal-soft-1.17.0/hrtf/default-48000.mhr
similarity index 100%
rename from jni/openal-soft-1.17.0/hrtf/default-48000.mhr
rename to love/src/jni/openal-soft-1.17.0/hrtf/default-48000.mhr
diff --git a/jni/openal-soft-1.17.0/include/AL/al.h b/love/src/jni/openal-soft-1.17.0/include/AL/al.h
similarity index 100%
rename from jni/openal-soft-1.17.0/include/AL/al.h
rename to love/src/jni/openal-soft-1.17.0/include/AL/al.h
diff --git a/jni/openal-soft-1.17.0/include/AL/alc.h b/love/src/jni/openal-soft-1.17.0/include/AL/alc.h
similarity index 100%
rename from jni/openal-soft-1.17.0/include/AL/alc.h
rename to love/src/jni/openal-soft-1.17.0/include/AL/alc.h
diff --git a/jni/openal-soft-1.17.0/include/AL/alext.h b/love/src/jni/openal-soft-1.17.0/include/AL/alext.h
similarity index 100%
rename from jni/openal-soft-1.17.0/include/AL/alext.h
rename to love/src/jni/openal-soft-1.17.0/include/AL/alext.h
diff --git a/jni/openal-soft-1.17.0/include/AL/efx-creative.h b/love/src/jni/openal-soft-1.17.0/include/AL/efx-creative.h
similarity index 100%
rename from jni/openal-soft-1.17.0/include/AL/efx-creative.h
rename to love/src/jni/openal-soft-1.17.0/include/AL/efx-creative.h
diff --git a/jni/openal-soft-1.17.0/include/AL/efx-presets.h b/love/src/jni/openal-soft-1.17.0/include/AL/efx-presets.h
similarity index 100%
rename from jni/openal-soft-1.17.0/include/AL/efx-presets.h
rename to love/src/jni/openal-soft-1.17.0/include/AL/efx-presets.h
diff --git a/jni/openal-soft-1.17.0/include/AL/efx.h b/love/src/jni/openal-soft-1.17.0/include/AL/efx.h
similarity index 100%
rename from jni/openal-soft-1.17.0/include/AL/efx.h
rename to love/src/jni/openal-soft-1.17.0/include/AL/efx.h
diff --git a/jni/openal-soft-1.17.0/include/align.h b/love/src/jni/openal-soft-1.17.0/include/align.h
similarity index 100%
rename from jni/openal-soft-1.17.0/include/align.h
rename to love/src/jni/openal-soft-1.17.0/include/align.h
diff --git a/jni/openal-soft-1.17.0/include/atomic.h b/love/src/jni/openal-soft-1.17.0/include/atomic.h
similarity index 100%
rename from jni/openal-soft-1.17.0/include/atomic.h
rename to love/src/jni/openal-soft-1.17.0/include/atomic.h
diff --git a/jni/openal-soft-1.17.0/include/bool.h b/love/src/jni/openal-soft-1.17.0/include/bool.h
similarity index 100%
rename from jni/openal-soft-1.17.0/include/bool.h
rename to love/src/jni/openal-soft-1.17.0/include/bool.h
diff --git a/jni/openal-soft-1.17.0/include/rwlock.h b/love/src/jni/openal-soft-1.17.0/include/rwlock.h
similarity index 100%
rename from jni/openal-soft-1.17.0/include/rwlock.h
rename to love/src/jni/openal-soft-1.17.0/include/rwlock.h
diff --git a/jni/openal-soft-1.17.0/include/static_assert.h b/love/src/jni/openal-soft-1.17.0/include/static_assert.h
similarity index 100%
rename from jni/openal-soft-1.17.0/include/static_assert.h
rename to love/src/jni/openal-soft-1.17.0/include/static_assert.h
diff --git a/jni/openal-soft-1.17.0/include/threads.h b/love/src/jni/openal-soft-1.17.0/include/threads.h
similarity index 100%
rename from jni/openal-soft-1.17.0/include/threads.h
rename to love/src/jni/openal-soft-1.17.0/include/threads.h
diff --git a/jni/openal-soft-1.17.0/include/uintmap.h b/love/src/jni/openal-soft-1.17.0/include/uintmap.h
similarity index 100%
rename from jni/openal-soft-1.17.0/include/uintmap.h
rename to love/src/jni/openal-soft-1.17.0/include/uintmap.h
diff --git a/jni/openal-soft-1.17.0/openal.pc.in b/love/src/jni/openal-soft-1.17.0/openal.pc.in
similarity index 100%
rename from jni/openal-soft-1.17.0/openal.pc.in
rename to love/src/jni/openal-soft-1.17.0/openal.pc.in
diff --git a/jni/openal-soft-1.17.0/utils/CIAIR.def b/love/src/jni/openal-soft-1.17.0/utils/CIAIR.def
similarity index 100%
rename from jni/openal-soft-1.17.0/utils/CIAIR.def
rename to love/src/jni/openal-soft-1.17.0/utils/CIAIR.def
diff --git a/jni/openal-soft-1.17.0/utils/IRC_1005.def b/love/src/jni/openal-soft-1.17.0/utils/IRC_1005.def
similarity index 100%
rename from jni/openal-soft-1.17.0/utils/IRC_1005.def
rename to love/src/jni/openal-soft-1.17.0/utils/IRC_1005.def
diff --git a/jni/openal-soft-1.17.0/utils/MIT_KEMAR.def b/love/src/jni/openal-soft-1.17.0/utils/MIT_KEMAR.def
similarity index 100%
rename from jni/openal-soft-1.17.0/utils/MIT_KEMAR.def
rename to love/src/jni/openal-soft-1.17.0/utils/MIT_KEMAR.def
diff --git a/jni/openal-soft-1.17.0/utils/alsoft-config/CMakeLists.txt b/love/src/jni/openal-soft-1.17.0/utils/alsoft-config/CMakeLists.txt
similarity index 100%
rename from jni/openal-soft-1.17.0/utils/alsoft-config/CMakeLists.txt
rename to love/src/jni/openal-soft-1.17.0/utils/alsoft-config/CMakeLists.txt
diff --git a/jni/openal-soft-1.17.0/utils/alsoft-config/main.cpp b/love/src/jni/openal-soft-1.17.0/utils/alsoft-config/main.cpp
similarity index 100%
rename from jni/openal-soft-1.17.0/utils/alsoft-config/main.cpp
rename to love/src/jni/openal-soft-1.17.0/utils/alsoft-config/main.cpp
diff --git a/jni/openal-soft-1.17.0/utils/alsoft-config/mainwindow.cpp b/love/src/jni/openal-soft-1.17.0/utils/alsoft-config/mainwindow.cpp
similarity index 100%
rename from jni/openal-soft-1.17.0/utils/alsoft-config/mainwindow.cpp
rename to love/src/jni/openal-soft-1.17.0/utils/alsoft-config/mainwindow.cpp
diff --git a/jni/openal-soft-1.17.0/utils/alsoft-config/mainwindow.h b/love/src/jni/openal-soft-1.17.0/utils/alsoft-config/mainwindow.h
similarity index 100%
rename from jni/openal-soft-1.17.0/utils/alsoft-config/mainwindow.h
rename to love/src/jni/openal-soft-1.17.0/utils/alsoft-config/mainwindow.h
diff --git a/jni/openal-soft-1.17.0/utils/alsoft-config/mainwindow.ui b/love/src/jni/openal-soft-1.17.0/utils/alsoft-config/mainwindow.ui
similarity index 100%
rename from jni/openal-soft-1.17.0/utils/alsoft-config/mainwindow.ui
rename to love/src/jni/openal-soft-1.17.0/utils/alsoft-config/mainwindow.ui
diff --git a/jni/openal-soft-1.17.0/utils/makehrtf.c b/love/src/jni/openal-soft-1.17.0/utils/makehrtf.c
similarity index 100%
rename from jni/openal-soft-1.17.0/utils/makehrtf.c
rename to love/src/jni/openal-soft-1.17.0/utils/makehrtf.c
diff --git a/jni/openal-soft-1.17.0/utils/openal-info.c b/love/src/jni/openal-soft-1.17.0/utils/openal-info.c
similarity index 100%
rename from jni/openal-soft-1.17.0/utils/openal-info.c
rename to love/src/jni/openal-soft-1.17.0/utils/openal-info.c
diff --git a/jni/physfs-2.1.0/.hg_archival.txt b/love/src/jni/physfs-2.1.0/.hg_archival.txt
similarity index 100%
rename from jni/physfs-2.1.0/.hg_archival.txt
rename to love/src/jni/physfs-2.1.0/.hg_archival.txt
diff --git a/jni/physfs-2.1.0/.hgignore b/love/src/jni/physfs-2.1.0/.hgignore
similarity index 100%
rename from jni/physfs-2.1.0/.hgignore
rename to love/src/jni/physfs-2.1.0/.hgignore
diff --git a/jni/physfs-2.1.0/.hgtags b/love/src/jni/physfs-2.1.0/.hgtags
similarity index 100%
rename from jni/physfs-2.1.0/.hgtags
rename to love/src/jni/physfs-2.1.0/.hgtags
diff --git a/jni/physfs-2.1.0/Android.mk b/love/src/jni/physfs-2.1.0/Android.mk
similarity index 100%
rename from jni/physfs-2.1.0/Android.mk
rename to love/src/jni/physfs-2.1.0/Android.mk
diff --git a/jni/physfs-2.1.0/CMakeLists.txt b/love/src/jni/physfs-2.1.0/CMakeLists.txt
similarity index 100%
rename from jni/physfs-2.1.0/CMakeLists.txt
rename to love/src/jni/physfs-2.1.0/CMakeLists.txt
diff --git a/jni/physfs-2.1.0/LICENSE.txt b/love/src/jni/physfs-2.1.0/LICENSE.txt
similarity index 100%
rename from jni/physfs-2.1.0/LICENSE.txt
rename to love/src/jni/physfs-2.1.0/LICENSE.txt
diff --git a/jni/physfs-2.1.0/README.txt b/love/src/jni/physfs-2.1.0/README.txt
similarity index 100%
rename from jni/physfs-2.1.0/README.txt
rename to love/src/jni/physfs-2.1.0/README.txt
diff --git a/jni/physfs-2.1.0/docs/CHANGELOG.txt b/love/src/jni/physfs-2.1.0/docs/CHANGELOG.txt
similarity index 100%
rename from jni/physfs-2.1.0/docs/CHANGELOG.txt
rename to love/src/jni/physfs-2.1.0/docs/CHANGELOG.txt
diff --git a/jni/physfs-2.1.0/docs/CREDITS.txt b/love/src/jni/physfs-2.1.0/docs/CREDITS.txt
similarity index 100%
rename from jni/physfs-2.1.0/docs/CREDITS.txt
rename to love/src/jni/physfs-2.1.0/docs/CREDITS.txt
diff --git a/jni/physfs-2.1.0/docs/Doxyfile b/love/src/jni/physfs-2.1.0/docs/Doxyfile
similarity index 100%
rename from jni/physfs-2.1.0/docs/Doxyfile
rename to love/src/jni/physfs-2.1.0/docs/Doxyfile
diff --git a/jni/physfs-2.1.0/docs/INSTALL.txt b/love/src/jni/physfs-2.1.0/docs/INSTALL.txt
similarity index 100%
rename from jni/physfs-2.1.0/docs/INSTALL.txt
rename to love/src/jni/physfs-2.1.0/docs/INSTALL.txt
diff --git a/jni/physfs-2.1.0/docs/TODO.txt b/love/src/jni/physfs-2.1.0/docs/TODO.txt
similarity index 100%
rename from jni/physfs-2.1.0/docs/TODO.txt
rename to love/src/jni/physfs-2.1.0/docs/TODO.txt
diff --git a/jni/physfs-2.1.0/extras/PhysFS.NET/AssemblyInfo.cs b/love/src/jni/physfs-2.1.0/extras/PhysFS.NET/AssemblyInfo.cs
similarity index 100%
rename from jni/physfs-2.1.0/extras/PhysFS.NET/AssemblyInfo.cs
rename to love/src/jni/physfs-2.1.0/extras/PhysFS.NET/AssemblyInfo.cs
diff --git a/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS.NET.csproj b/love/src/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS.NET.csproj
similarity index 100%
rename from jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS.NET.csproj
rename to love/src/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS.NET.csproj
diff --git a/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS.NET.sln b/love/src/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS.NET.sln
similarity index 100%
rename from jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS.NET.sln
rename to love/src/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS.NET.sln
diff --git a/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS.cs b/love/src/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS.cs
similarity index 100%
rename from jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS.cs
rename to love/src/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS.cs
diff --git a/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFSFileStream.cs b/love/src/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFSFileStream.cs
similarity index 100%
rename from jni/physfs-2.1.0/extras/PhysFS.NET/PhysFSFileStream.cs
rename to love/src/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFSFileStream.cs
diff --git a/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS_DLL.cs b/love/src/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS_DLL.cs
similarity index 100%
rename from jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS_DLL.cs
rename to love/src/jni/physfs-2.1.0/extras/PhysFS.NET/PhysFS_DLL.cs
diff --git a/jni/physfs-2.1.0/extras/PhysFS.NET/README.txt b/love/src/jni/physfs-2.1.0/extras/PhysFS.NET/README.txt
similarity index 100%
rename from jni/physfs-2.1.0/extras/PhysFS.NET/README.txt
rename to love/src/jni/physfs-2.1.0/extras/PhysFS.NET/README.txt
diff --git a/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/App.ico b/love/src/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/App.ico
similarity index 100%
rename from jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/App.ico
rename to love/src/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/App.ico
diff --git a/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/AssemblyInfo.cs b/love/src/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/AssemblyInfo.cs
similarity index 100%
rename from jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/AssemblyInfo.cs
rename to love/src/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/AssemblyInfo.cs
diff --git a/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestApp.csproj b/love/src/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestApp.csproj
similarity index 100%
rename from jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestApp.csproj
rename to love/src/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestApp.csproj
diff --git a/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestApp.sln b/love/src/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestApp.sln
similarity index 100%
rename from jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestApp.sln
rename to love/src/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestApp.sln
diff --git a/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestAppForm.cs b/love/src/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestAppForm.cs
similarity index 100%
rename from jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestAppForm.cs
rename to love/src/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestAppForm.cs
diff --git a/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestAppForm.resx b/love/src/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestAppForm.resx
similarity index 100%
rename from jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestAppForm.resx
rename to love/src/jni/physfs-2.1.0/extras/PhysFS.NET/TestApp/TestAppForm.resx
diff --git a/jni/physfs-2.1.0/extras/abs-file.h b/love/src/jni/physfs-2.1.0/extras/abs-file.h
similarity index 100%
rename from jni/physfs-2.1.0/extras/abs-file.h
rename to love/src/jni/physfs-2.1.0/extras/abs-file.h
diff --git a/jni/physfs-2.1.0/extras/casefolding.txt b/love/src/jni/physfs-2.1.0/extras/casefolding.txt
similarity index 100%
rename from jni/physfs-2.1.0/extras/casefolding.txt
rename to love/src/jni/physfs-2.1.0/extras/casefolding.txt
diff --git a/jni/physfs-2.1.0/extras/globbing.c b/love/src/jni/physfs-2.1.0/extras/globbing.c
similarity index 100%
rename from jni/physfs-2.1.0/extras/globbing.c
rename to love/src/jni/physfs-2.1.0/extras/globbing.c
diff --git a/jni/physfs-2.1.0/extras/globbing.h b/love/src/jni/physfs-2.1.0/extras/globbing.h
similarity index 100%
rename from jni/physfs-2.1.0/extras/globbing.h
rename to love/src/jni/physfs-2.1.0/extras/globbing.h
diff --git a/jni/physfs-2.1.0/extras/ignorecase.c b/love/src/jni/physfs-2.1.0/extras/ignorecase.c
similarity index 100%
rename from jni/physfs-2.1.0/extras/ignorecase.c
rename to love/src/jni/physfs-2.1.0/extras/ignorecase.c
diff --git a/jni/physfs-2.1.0/extras/ignorecase.h b/love/src/jni/physfs-2.1.0/extras/ignorecase.h
similarity index 100%
rename from jni/physfs-2.1.0/extras/ignorecase.h
rename to love/src/jni/physfs-2.1.0/extras/ignorecase.h
diff --git a/jni/physfs-2.1.0/extras/makecasefoldhashtable.pl b/love/src/jni/physfs-2.1.0/extras/makecasefoldhashtable.pl
similarity index 100%
rename from jni/physfs-2.1.0/extras/makecasefoldhashtable.pl
rename to love/src/jni/physfs-2.1.0/extras/makecasefoldhashtable.pl
diff --git a/jni/physfs-2.1.0/extras/physfs-swig.i b/love/src/jni/physfs-2.1.0/extras/physfs-swig.i
similarity index 100%
rename from jni/physfs-2.1.0/extras/physfs-swig.i
rename to love/src/jni/physfs-2.1.0/extras/physfs-swig.i
diff --git a/jni/physfs-2.1.0/extras/physfs.pc.in b/love/src/jni/physfs-2.1.0/extras/physfs.pc.in
similarity index 100%
rename from jni/physfs-2.1.0/extras/physfs.pc.in
rename to love/src/jni/physfs-2.1.0/extras/physfs.pc.in
diff --git a/jni/physfs-2.1.0/extras/physfshttpd.c b/love/src/jni/physfs-2.1.0/extras/physfshttpd.c
similarity index 100%
rename from jni/physfs-2.1.0/extras/physfshttpd.c
rename to love/src/jni/physfs-2.1.0/extras/physfshttpd.c
diff --git a/jni/physfs-2.1.0/extras/physfsrwops.c b/love/src/jni/physfs-2.1.0/extras/physfsrwops.c
similarity index 100%
rename from jni/physfs-2.1.0/extras/physfsrwops.c
rename to love/src/jni/physfs-2.1.0/extras/physfsrwops.c
diff --git a/jni/physfs-2.1.0/extras/physfsrwops.h b/love/src/jni/physfs-2.1.0/extras/physfsrwops.h
similarity index 100%
rename from jni/physfs-2.1.0/extras/physfsrwops.h
rename to love/src/jni/physfs-2.1.0/extras/physfsrwops.h
diff --git a/jni/physfs-2.1.0/extras/physfsunpack.c b/love/src/jni/physfs-2.1.0/extras/physfsunpack.c
similarity index 100%
rename from jni/physfs-2.1.0/extras/physfsunpack.c
rename to love/src/jni/physfs-2.1.0/extras/physfsunpack.c
diff --git a/jni/physfs-2.1.0/extras/selfextract.c b/love/src/jni/physfs-2.1.0/extras/selfextract.c
similarity index 100%
rename from jni/physfs-2.1.0/extras/selfextract.c
rename to love/src/jni/physfs-2.1.0/extras/selfextract.c
diff --git a/jni/physfs-2.1.0/extras/uninstall.sh b/love/src/jni/physfs-2.1.0/extras/uninstall.sh
similarity index 100%
rename from jni/physfs-2.1.0/extras/uninstall.sh
rename to love/src/jni/physfs-2.1.0/extras/uninstall.sh
diff --git a/jni/physfs-2.1.0/src/archiver_dir.c b/love/src/jni/physfs-2.1.0/src/archiver_dir.c
similarity index 100%
rename from jni/physfs-2.1.0/src/archiver_dir.c
rename to love/src/jni/physfs-2.1.0/src/archiver_dir.c
diff --git a/jni/physfs-2.1.0/src/archiver_grp.c b/love/src/jni/physfs-2.1.0/src/archiver_grp.c
similarity index 100%
rename from jni/physfs-2.1.0/src/archiver_grp.c
rename to love/src/jni/physfs-2.1.0/src/archiver_grp.c
diff --git a/jni/physfs-2.1.0/src/archiver_hog.c b/love/src/jni/physfs-2.1.0/src/archiver_hog.c
similarity index 100%
rename from jni/physfs-2.1.0/src/archiver_hog.c
rename to love/src/jni/physfs-2.1.0/src/archiver_hog.c
diff --git a/jni/physfs-2.1.0/src/archiver_iso9660.c b/love/src/jni/physfs-2.1.0/src/archiver_iso9660.c
similarity index 100%
rename from jni/physfs-2.1.0/src/archiver_iso9660.c
rename to love/src/jni/physfs-2.1.0/src/archiver_iso9660.c
diff --git a/jni/physfs-2.1.0/src/archiver_lzma.c b/love/src/jni/physfs-2.1.0/src/archiver_lzma.c
similarity index 100%
rename from jni/physfs-2.1.0/src/archiver_lzma.c
rename to love/src/jni/physfs-2.1.0/src/archiver_lzma.c
diff --git a/jni/physfs-2.1.0/src/archiver_mvl.c b/love/src/jni/physfs-2.1.0/src/archiver_mvl.c
similarity index 100%
rename from jni/physfs-2.1.0/src/archiver_mvl.c
rename to love/src/jni/physfs-2.1.0/src/archiver_mvl.c
diff --git a/jni/physfs-2.1.0/src/archiver_qpak.c b/love/src/jni/physfs-2.1.0/src/archiver_qpak.c
similarity index 100%
rename from jni/physfs-2.1.0/src/archiver_qpak.c
rename to love/src/jni/physfs-2.1.0/src/archiver_qpak.c
diff --git a/jni/physfs-2.1.0/src/archiver_slb.c b/love/src/jni/physfs-2.1.0/src/archiver_slb.c
similarity index 100%
rename from jni/physfs-2.1.0/src/archiver_slb.c
rename to love/src/jni/physfs-2.1.0/src/archiver_slb.c
diff --git a/jni/physfs-2.1.0/src/archiver_unpacked.c b/love/src/jni/physfs-2.1.0/src/archiver_unpacked.c
similarity index 100%
rename from jni/physfs-2.1.0/src/archiver_unpacked.c
rename to love/src/jni/physfs-2.1.0/src/archiver_unpacked.c
diff --git a/jni/physfs-2.1.0/src/archiver_wad.c b/love/src/jni/physfs-2.1.0/src/archiver_wad.c
similarity index 100%
rename from jni/physfs-2.1.0/src/archiver_wad.c
rename to love/src/jni/physfs-2.1.0/src/archiver_wad.c
diff --git a/jni/physfs-2.1.0/src/archiver_zip.c b/love/src/jni/physfs-2.1.0/src/archiver_zip.c
similarity index 100%
rename from jni/physfs-2.1.0/src/archiver_zip.c
rename to love/src/jni/physfs-2.1.0/src/archiver_zip.c
diff --git a/jni/physfs-2.1.0/src/lzma/7zC.txt b/love/src/jni/physfs-2.1.0/src/lzma/7zC.txt
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/7zC.txt
rename to love/src/jni/physfs-2.1.0/src/lzma/7zC.txt
diff --git a/jni/physfs-2.1.0/src/lzma/7zFormat.txt b/love/src/jni/physfs-2.1.0/src/lzma/7zFormat.txt
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/7zFormat.txt
rename to love/src/jni/physfs-2.1.0/src/lzma/7zFormat.txt
diff --git a/jni/physfs-2.1.0/src/lzma/C/7zCrc.c b/love/src/jni/physfs-2.1.0/src/lzma/C/7zCrc.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/7zCrc.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/7zCrc.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/7zCrc.h b/love/src/jni/physfs-2.1.0/src/lzma/C/7zCrc.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/7zCrc.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/7zCrc.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/7zCrcT8.c b/love/src/jni/physfs-2.1.0/src/lzma/C/7zCrcT8.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/7zCrcT8.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/7zCrcT8.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Alloc.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Alloc.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Alloc.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Alloc.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Alloc.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Alloc.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Alloc.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Alloc.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zAlloc.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zAlloc.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zAlloc.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zAlloc.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zAlloc.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zAlloc.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zAlloc.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zAlloc.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zBuffer.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zBuffer.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zBuffer.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zBuffer.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zBuffer.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zBuffer.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zBuffer.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zBuffer.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zDecode.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zDecode.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zDecode.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zDecode.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zDecode.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zDecode.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zDecode.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zDecode.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zExtract.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zExtract.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zExtract.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zExtract.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zExtract.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zExtract.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zExtract.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zExtract.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zHeader.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zHeader.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zHeader.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zHeader.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zHeader.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zHeader.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zHeader.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zHeader.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zIn.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zIn.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zIn.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zIn.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zIn.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zIn.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zIn.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zIn.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zItem.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zItem.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zItem.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zItem.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zItem.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zItem.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zItem.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zItem.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zMain.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zMain.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zMain.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zMain.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zMethodID.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zMethodID.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zMethodID.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zMethodID.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zMethodID.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zMethodID.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zMethodID.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7zMethodID.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7z_C.dsp b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7z_C.dsp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7z_C.dsp
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7z_C.dsp
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7z_C.dsw b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7z_C.dsw
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/7z_C.dsw
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/7z_C.dsw
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/makefile b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/makefile
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/makefile
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/makefile
diff --git a/jni/physfs-2.1.0/src/lzma/C/Archive/7z/makefile.gcc b/love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/makefile.gcc
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Archive/7z/makefile.gcc
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Archive/7z/makefile.gcc
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARM.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARM.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARM.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARM.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARM.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARM.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARM.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARM.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARMThumb.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARMThumb.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARMThumb.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARMThumb.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARMThumb.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARMThumb.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARMThumb.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchARMThumb.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchIA64.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchIA64.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchIA64.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchIA64.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchIA64.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchIA64.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchIA64.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchIA64.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchPPC.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchPPC.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchPPC.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchPPC.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchPPC.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchPPC.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchPPC.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchPPC.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchSPARC.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchSPARC.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchSPARC.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchSPARC.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchSPARC.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchSPARC.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchSPARC.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchSPARC.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchTypes.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchTypes.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchTypes.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchTypes.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86_2.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86_2.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86_2.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86_2.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86_2.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86_2.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86_2.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Branch/BranchX86_2.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Huffman/HuffmanEncode.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Huffman/HuffmanEncode.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Huffman/HuffmanEncode.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Huffman/HuffmanEncode.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Huffman/HuffmanEncode.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Huffman/HuffmanEncode.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Huffman/HuffmanEncode.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Huffman/HuffmanEncode.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/LzHash.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/LzHash.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Lz/LzHash.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/LzHash.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinder.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinder.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinder.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinder.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinder.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinder.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinder.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinder.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinderMt.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinderMt.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinderMt.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinderMt.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinderMt.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinderMt.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinderMt.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lz/MatchFinderMt.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaDecode.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaDecode.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaDecode.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaDecode.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaDecode.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaDecode.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaDecode.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaDecode.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaDecodeSize.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaDecodeSize.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaDecodeSize.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaDecodeSize.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaStateDecode.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaStateDecode.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaStateDecode.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaStateDecode.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaStateDecode.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaStateDecode.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaStateDecode.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaStateDecode.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaStateTest.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaStateTest.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaStateTest.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaStateTest.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaTest.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaTest.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaTest.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaTest.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaTypes.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaTypes.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaTypes.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Compress/Lzma/LzmaTypes.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/CpuArch.h b/love/src/jni/physfs-2.1.0/src/lzma/C/CpuArch.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/CpuArch.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/CpuArch.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/IStream.h b/love/src/jni/physfs-2.1.0/src/lzma/C/IStream.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/IStream.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/IStream.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Sort.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Sort.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Sort.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Sort.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Sort.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Sort.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Sort.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Sort.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Threads.c b/love/src/jni/physfs-2.1.0/src/lzma/C/Threads.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Threads.c
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Threads.c
diff --git a/jni/physfs-2.1.0/src/lzma/C/Threads.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Threads.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Threads.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Threads.h
diff --git a/jni/physfs-2.1.0/src/lzma/C/Types.h b/love/src/jni/physfs-2.1.0/src/lzma/C/Types.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/C/Types.h
rename to love/src/jni/physfs-2.1.0/src/lzma/C/Types.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7z.ico b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7z.ico
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7z.ico
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7z.ico
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zCompressionMode.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zCompressionMode.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zCompressionMode.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zCompressionMode.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zDecode.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zDecode.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zDecode.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zDecode.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zDecode.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zDecode.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zDecode.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zDecode.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zEncode.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zEncode.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zEncode.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zEncode.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zEncode.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zEncode.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zEncode.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zEncode.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zExtract.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zExtract.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zExtract.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zExtract.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderInStream.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderInStream.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderInStream.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderInStream.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderInStream.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderInStream.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderInStream.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderInStream.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderOutStream.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderOutStream.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderOutStream.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderOutStream.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderOutStream.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderOutStream.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderOutStream.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zFolderOutStream.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHandler.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHandler.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHandler.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHandler.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHandler.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHandler.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHandler.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHandler.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHandlerOut.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHandlerOut.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHandlerOut.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHandlerOut.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHeader.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHeader.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHeader.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHeader.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHeader.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHeader.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHeader.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zHeader.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zIn.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zIn.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zIn.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zIn.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zIn.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zIn.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zIn.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zIn.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zItem.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zItem.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zItem.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zItem.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zOut.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zOut.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zOut.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zOut.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zOut.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zOut.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zOut.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zOut.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zProperties.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zProperties.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zProperties.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zProperties.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zProperties.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zProperties.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zProperties.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zProperties.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zRegister.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zRegister.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zRegister.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zRegister.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zSpecStream.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zSpecStream.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zSpecStream.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zSpecStream.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zSpecStream.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zSpecStream.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zSpecStream.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zSpecStream.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zUpdate.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zUpdate.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zUpdate.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zUpdate.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zUpdate.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zUpdate.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zUpdate.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/7zUpdate.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/StdAfx.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/StdAfx.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/StdAfx.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/StdAfx.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/7z/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Archive.def b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Archive.def
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Archive.def
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Archive.def
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Archive2.def b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Archive2.def
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Archive2.def
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Archive2.def
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/ArchiveExports.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/ArchiveExports.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/ArchiveExports.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/ArchiveExports.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2MT.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2MT.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2MT.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2MT.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2MT.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2MT.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2MT.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CoderMixer2MT.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CrossThreadProgress.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CrossThreadProgress.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CrossThreadProgress.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CrossThreadProgress.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CrossThreadProgress.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CrossThreadProgress.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CrossThreadProgress.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/CrossThreadProgress.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/DummyOutStream.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/DummyOutStream.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/DummyOutStream.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/DummyOutStream.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/DummyOutStream.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/DummyOutStream.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/DummyOutStream.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/DummyOutStream.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/HandlerOut.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/HandlerOut.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/HandlerOut.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/HandlerOut.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/HandlerOut.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/HandlerOut.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/HandlerOut.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/HandlerOut.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/InStreamWithCRC.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/InStreamWithCRC.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/InStreamWithCRC.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/InStreamWithCRC.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/InStreamWithCRC.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/InStreamWithCRC.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/InStreamWithCRC.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/InStreamWithCRC.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ItemNameUtils.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ItemNameUtils.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ItemNameUtils.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ItemNameUtils.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ItemNameUtils.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ItemNameUtils.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ItemNameUtils.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ItemNameUtils.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/MultiStream.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/MultiStream.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/MultiStream.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/MultiStream.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/MultiStream.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/MultiStream.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/MultiStream.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/MultiStream.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/OutStreamWithCRC.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ParseProperties.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ParseProperties.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ParseProperties.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ParseProperties.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ParseProperties.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ParseProperties.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ParseProperties.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/Common/ParseProperties.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/DllExports2.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/DllExports2.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/DllExports2.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/DllExports2.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/IArchive.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/IArchive.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/IArchive.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Archive/IArchive.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/Alone.dsp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/Alone.dsp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/Alone.dsp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/Alone.dsp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/Alone.dsw b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/Alone.dsw
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/Alone.dsw
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/Alone.dsw
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/makefile b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/makefile
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/makefile
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/makefile
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/resource.rc b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/resource.rc
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/resource.rc
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Alone7z/resource.rc
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/makefile b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/makefile
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/makefile
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/makefile
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/resource.rc b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/resource.rc
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/resource.rc
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zExtractR/resource.rc
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/makefile b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/makefile
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/makefile
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/makefile
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/resource.rc b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/resource.rc
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/resource.rc
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Bundles/Format7zR/resource.rc
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/CreateCoder.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/CreateCoder.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/CreateCoder.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/CreateCoder.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/CreateCoder.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/CreateCoder.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/CreateCoder.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/CreateCoder.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilePathAutoRename.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilePathAutoRename.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilePathAutoRename.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilePathAutoRename.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilePathAutoRename.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilePathAutoRename.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilePathAutoRename.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilePathAutoRename.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FileStreams.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FileStreams.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FileStreams.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FileStreams.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FileStreams.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FileStreams.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FileStreams.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FileStreams.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilterCoder.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilterCoder.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilterCoder.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilterCoder.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilterCoder.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilterCoder.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilterCoder.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/FilterCoder.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InBuffer.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InBuffer.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InBuffer.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InBuffer.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InBuffer.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InBuffer.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InBuffer.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InBuffer.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InOutTempBuffer.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InOutTempBuffer.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InOutTempBuffer.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InOutTempBuffer.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InOutTempBuffer.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InOutTempBuffer.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InOutTempBuffer.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/InOutTempBuffer.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LimitedStreams.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LimitedStreams.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LimitedStreams.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LimitedStreams.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LimitedStreams.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LimitedStreams.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LimitedStreams.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LimitedStreams.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LockedStream.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LockedStream.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LockedStream.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LockedStream.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LockedStream.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LockedStream.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LockedStream.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/LockedStream.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodId.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodId.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodId.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodId.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodId.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodId.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodId.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodId.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodProps.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodProps.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodProps.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodProps.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodProps.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodProps.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodProps.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/MethodProps.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OffsetStream.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OffsetStream.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OffsetStream.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OffsetStream.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OffsetStream.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OffsetStream.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OffsetStream.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OffsetStream.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OutBuffer.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OutBuffer.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OutBuffer.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OutBuffer.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OutBuffer.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OutBuffer.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OutBuffer.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/OutBuffer.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/ProgressUtils.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/ProgressUtils.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/ProgressUtils.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/ProgressUtils.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/ProgressUtils.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/ProgressUtils.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/ProgressUtils.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/ProgressUtils.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/RegisterArc.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/RegisterArc.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/RegisterArc.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/RegisterArc.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/RegisterCodec.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/RegisterCodec.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/RegisterCodec.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/RegisterCodec.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamBinder.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamBinder.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamBinder.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamBinder.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamBinder.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamBinder.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamBinder.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamBinder.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamObjects.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamObjects.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamObjects.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamObjects.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamObjects.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamObjects.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamObjects.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamObjects.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamUtils.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamUtils.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamUtils.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamUtils.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamUtils.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamUtils.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamUtils.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/StreamUtils.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/VirtThread.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/VirtThread.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/VirtThread.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/VirtThread.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/VirtThread.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/VirtThread.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/VirtThread.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Common/VirtThread.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARM.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARM.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARM.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARM.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARM.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARM.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARM.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARM.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARMThumb.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARMThumb.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARMThumb.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARMThumb.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARMThumb.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARMThumb.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARMThumb.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/ARMThumb.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BCJ2Register.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BCJ2Register.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BCJ2Register.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BCJ2Register.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BCJRegister.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BCJRegister.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BCJRegister.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BCJRegister.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BranchCoder.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BranchCoder.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BranchCoder.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BranchCoder.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BranchCoder.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BranchCoder.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BranchCoder.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BranchCoder.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BranchRegister.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BranchRegister.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BranchRegister.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/BranchRegister.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/IA64.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/IA64.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/IA64.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/IA64.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/IA64.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/IA64.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/IA64.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/IA64.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/PPC.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/PPC.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/PPC.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/PPC.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/PPC.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/PPC.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/PPC.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/PPC.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/SPARC.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/SPARC.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/SPARC.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/SPARC.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/SPARC.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/SPARC.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/SPARC.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/SPARC.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/StdAfx.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/StdAfx.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/StdAfx.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/StdAfx.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86_2.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86_2.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86_2.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86_2.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86_2.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86_2.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86_2.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Branch/x86_2.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/ByteSwap.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/ByteSwap.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/ByteSwap.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/ByteSwap.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/ByteSwap.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/ByteSwap.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/ByteSwap.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/ByteSwap.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/ByteSwapRegister.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/ByteSwapRegister.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/ByteSwapRegister.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/ByteSwapRegister.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/StdAfx.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/StdAfx.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/StdAfx.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/StdAfx.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/ByteSwap/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/CodecExports.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/CodecExports.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/CodecExports.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/CodecExports.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/CopyCoder.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/CopyCoder.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/CopyCoder.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/CopyCoder.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/CopyCoder.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/CopyCoder.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/CopyCoder.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/CopyCoder.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/CopyRegister.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/CopyRegister.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/CopyRegister.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/CopyRegister.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/StdAfx.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/StdAfx.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/StdAfx.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/StdAfx.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/Copy/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZ/LZOutWindow.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZ/LZOutWindow.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZ/LZOutWindow.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZ/LZOutWindow.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZ/LZOutWindow.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZ/LZOutWindow.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZ/LZOutWindow.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZ/LZOutWindow.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZ/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZ/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZ/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZ/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMA.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMA.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMA.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMA.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMADecoder.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMADecoder.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMADecoder.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMADecoder.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMADecoder.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMADecoder.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMADecoder.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMADecoder.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMAEncoder.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMAEncoder.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMAEncoder.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMAEncoder.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMAEncoder.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMAEncoder.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMAEncoder.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMAEncoder.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMARegister.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMARegister.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMARegister.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/LZMARegister.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/StdAfx.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/StdAfx.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/StdAfx.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/StdAfx.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/AloneLZMA.dsp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/AloneLZMA.dsp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/AloneLZMA.dsp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/AloneLZMA.dsp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/AloneLZMA.dsw b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/AloneLZMA.dsw
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/AloneLZMA.dsw
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/AloneLZMA.dsw
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaAlone.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaAlone.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaAlone.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaAlone.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBench.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBench.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBench.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBench.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBench.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBench.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBench.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBench.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBenchCon.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBenchCon.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBenchCon.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBenchCon.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBenchCon.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBenchCon.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBenchCon.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaBenchCon.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRam.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRam.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRam.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRam.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRam.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRam.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRam.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRam.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRamDecode.c b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRamDecode.c
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRamDecode.c
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRamDecode.c
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRamDecode.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRamDecode.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRamDecode.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/LzmaRamDecode.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/makefile b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/makefile
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/makefile
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/makefile
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/makefile.gcc b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/makefile.gcc
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/makefile.gcc
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/LZMA_Alone/makefile.gcc
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoder.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoder.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoder.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoder.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderBit.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderBit.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderBit.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderBit.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderBit.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderBit.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderBit.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderBit.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderBitTree.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderBitTree.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderBitTree.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderBitTree.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderOpt.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderOpt.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderOpt.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/RangeCoderOpt.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/Compress/RangeCoder/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/ICoder.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/ICoder.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/ICoder.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/ICoder.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/IDecl.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/IDecl.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/IDecl.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/IDecl.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/IPassword.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/IPassword.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/IPassword.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/IPassword.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/IProgress.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/IProgress.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/IProgress.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/IProgress.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/IStream.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/IStream.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/IStream.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/IStream.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/MyVersion.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/MyVersion.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/MyVersion.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/MyVersion.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/MyVersionInfo.rc b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/MyVersionInfo.rc
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/MyVersionInfo.rc
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/MyVersionInfo.rc
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/PropID.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/PropID.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/PropID.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/PropID.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/Client7z.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/Client7z.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/Client7z.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/Client7z.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/Client7z.dsp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/Client7z.dsp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/Client7z.dsp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/Client7z.dsp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/Client7z.dsw b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/Client7z.dsw
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/Client7z.dsw
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/Client7z.dsw
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/StdAfx.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/StdAfx.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/StdAfx.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/StdAfx.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/makefile b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/makefile
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/makefile
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Client7z/makefile
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveCommandLine.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveCommandLine.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveCommandLine.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveCommandLine.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveCommandLine.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveCommandLine.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveCommandLine.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveCommandLine.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveExtractCallback.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveExtractCallback.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveExtractCallback.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveExtractCallback.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveExtractCallback.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveExtractCallback.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveExtractCallback.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveExtractCallback.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveName.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveName.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveName.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveName.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveName.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveName.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveName.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveName.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveOpenCallback.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveOpenCallback.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveOpenCallback.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveOpenCallback.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveOpenCallback.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveOpenCallback.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveOpenCallback.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ArchiveOpenCallback.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/DefaultName.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/DefaultName.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/DefaultName.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/DefaultName.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/DefaultName.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/DefaultName.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/DefaultName.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/DefaultName.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/DirItem.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/DirItem.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/DirItem.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/DirItem.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/EnumDirItems.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/EnumDirItems.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/EnumDirItems.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/EnumDirItems.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/EnumDirItems.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/EnumDirItems.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/EnumDirItems.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/EnumDirItems.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExitCode.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExitCode.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExitCode.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExitCode.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Extract.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Extract.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Extract.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Extract.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Extract.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Extract.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Extract.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Extract.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExtractMode.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExtractMode.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExtractMode.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExtractMode.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExtractingFilePath.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExtractingFilePath.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExtractingFilePath.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExtractingFilePath.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExtractingFilePath.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExtractingFilePath.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExtractingFilePath.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ExtractingFilePath.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/IFileExtractCallback.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/IFileExtractCallback.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/IFileExtractCallback.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/IFileExtractCallback.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/LoadCodecs.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/LoadCodecs.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/LoadCodecs.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/LoadCodecs.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/LoadCodecs.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/LoadCodecs.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/LoadCodecs.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/LoadCodecs.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/OpenArchive.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/OpenArchive.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/OpenArchive.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/OpenArchive.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/OpenArchive.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/OpenArchive.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/OpenArchive.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/OpenArchive.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/PropIDUtils.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/PropIDUtils.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/PropIDUtils.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/PropIDUtils.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/PropIDUtils.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/PropIDUtils.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/PropIDUtils.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/PropIDUtils.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Property.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Property.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Property.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Property.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SetProperties.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SetProperties.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SetProperties.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SetProperties.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SetProperties.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SetProperties.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SetProperties.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SetProperties.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SortUtils.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SortUtils.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SortUtils.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SortUtils.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SortUtils.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SortUtils.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SortUtils.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/SortUtils.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/TempFiles.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/TempFiles.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/TempFiles.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/TempFiles.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/TempFiles.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/TempFiles.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/TempFiles.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/TempFiles.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Update.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Update.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Update.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Update.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Update.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Update.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Update.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/Update.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateAction.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateAction.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateAction.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateAction.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateAction.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateAction.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateAction.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateAction.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateCallback.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateCallback.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateCallback.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateCallback.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateCallback.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateCallback.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateCallback.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateCallback.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdatePair.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdatePair.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdatePair.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdatePair.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdatePair.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdatePair.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdatePair.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdatePair.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateProduce.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateProduce.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateProduce.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateProduce.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateProduce.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateProduce.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateProduce.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/UpdateProduce.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/WorkDir.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/WorkDir.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/WorkDir.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/WorkDir.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/WorkDir.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/WorkDir.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/WorkDir.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/WorkDir.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ZipRegistry.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ZipRegistry.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ZipRegistry.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Common/ZipRegistry.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ConsoleClose.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ConsoleClose.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ConsoleClose.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ConsoleClose.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ConsoleClose.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ConsoleClose.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ConsoleClose.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ConsoleClose.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ExtractCallbackConsole.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ExtractCallbackConsole.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ExtractCallbackConsole.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ExtractCallbackConsole.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ExtractCallbackConsole.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ExtractCallbackConsole.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ExtractCallbackConsole.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/ExtractCallbackConsole.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/List.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/List.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/List.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/List.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/List.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/List.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/List.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/List.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/Main.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/Main.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/Main.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/Main.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/MainAr.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/MainAr.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/MainAr.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/MainAr.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/OpenCallbackConsole.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/OpenCallbackConsole.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/OpenCallbackConsole.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/OpenCallbackConsole.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/OpenCallbackConsole.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/OpenCallbackConsole.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/OpenCallbackConsole.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/OpenCallbackConsole.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/PercentPrinter.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/PercentPrinter.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/PercentPrinter.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/PercentPrinter.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/PercentPrinter.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/PercentPrinter.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/PercentPrinter.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/PercentPrinter.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/StdAfx.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/StdAfx.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/StdAfx.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/StdAfx.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UpdateCallbackConsole.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UpdateCallbackConsole.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UpdateCallbackConsole.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UpdateCallbackConsole.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UpdateCallbackConsole.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UpdateCallbackConsole.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UpdateCallbackConsole.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UpdateCallbackConsole.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UserInputUtils.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UserInputUtils.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UserInputUtils.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UserInputUtils.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UserInputUtils.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UserInputUtils.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UserInputUtils.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/UserInputUtils.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/afxres.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/afxres.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/afxres.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/7zip/UI/Console/afxres.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Build.mak b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Build.mak
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Build.mak
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Build.mak
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/AutoPtr.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/AutoPtr.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/AutoPtr.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/AutoPtr.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/Buffer.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/Buffer.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/Buffer.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/Buffer.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/CRC.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/CRC.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/CRC.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/CRC.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/C_FileIO.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/C_FileIO.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/C_FileIO.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/C_FileIO.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/C_FileIO.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/C_FileIO.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/C_FileIO.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/C_FileIO.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/ComTry.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/ComTry.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/ComTry.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/ComTry.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/CommandLineParser.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/CommandLineParser.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/CommandLineParser.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/CommandLineParser.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/CommandLineParser.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/CommandLineParser.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/CommandLineParser.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/CommandLineParser.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/Defs.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/Defs.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/Defs.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/Defs.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/DynamicBuffer.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/DynamicBuffer.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/DynamicBuffer.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/DynamicBuffer.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/IntToString.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/IntToString.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/IntToString.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/IntToString.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/IntToString.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/IntToString.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/IntToString.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/IntToString.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/ListFileUtils.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/ListFileUtils.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/ListFileUtils.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/ListFileUtils.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/ListFileUtils.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/ListFileUtils.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/ListFileUtils.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/ListFileUtils.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/MyCom.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyCom.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/MyCom.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyCom.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/MyException.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyException.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/MyException.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyException.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/MyGuidDef.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyGuidDef.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/MyGuidDef.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyGuidDef.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/MyInitGuid.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyInitGuid.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/MyInitGuid.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyInitGuid.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/MyString.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyString.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/MyString.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyString.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/MyString.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyString.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/MyString.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyString.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/MyUnknown.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyUnknown.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/MyUnknown.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyUnknown.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/MyVector.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyVector.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/MyVector.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyVector.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/MyVector.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyVector.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/MyVector.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyVector.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/MyWindows.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyWindows.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/MyWindows.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/MyWindows.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/NewHandler.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/NewHandler.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/NewHandler.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/NewHandler.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/NewHandler.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/NewHandler.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/NewHandler.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/NewHandler.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/StdInStream.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StdInStream.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/StdInStream.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StdInStream.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/StdInStream.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StdInStream.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/StdInStream.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StdInStream.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/StdOutStream.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StdOutStream.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/StdOutStream.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StdOutStream.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/StdOutStream.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StdOutStream.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/StdOutStream.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StdOutStream.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/StringConvert.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StringConvert.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/StringConvert.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StringConvert.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/StringConvert.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StringConvert.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/StringConvert.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StringConvert.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/StringToInt.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StringToInt.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/StringToInt.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StringToInt.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/StringToInt.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StringToInt.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/StringToInt.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/StringToInt.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/Types.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/Types.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/Types.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/Types.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/UTFConvert.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/UTFConvert.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/UTFConvert.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/UTFConvert.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/UTFConvert.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/UTFConvert.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/UTFConvert.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/UTFConvert.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/Wildcard.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/Wildcard.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/Wildcard.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/Wildcard.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Common/Wildcard.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/Wildcard.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Common/Wildcard.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Common/Wildcard.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/DLL.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/DLL.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/DLL.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/DLL.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/DLL.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/DLL.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/DLL.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/DLL.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/Defs.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Defs.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/Defs.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Defs.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/Error.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Error.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/Error.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Error.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/Error.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Error.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/Error.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Error.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileDir.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileDir.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/FileDir.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileDir.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileDir.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileDir.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/FileDir.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileDir.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileFind.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileFind.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/FileFind.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileFind.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileFind.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileFind.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/FileFind.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileFind.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileIO.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileIO.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/FileIO.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileIO.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileIO.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileIO.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/FileIO.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileIO.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileMapping.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileMapping.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/FileMapping.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileMapping.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileMapping.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileMapping.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/FileMapping.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileMapping.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileName.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileName.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/FileName.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileName.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileName.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileName.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/FileName.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/FileName.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/Handle.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Handle.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/Handle.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Handle.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/MemoryLock.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/MemoryLock.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/MemoryLock.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/MemoryLock.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/MemoryLock.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/MemoryLock.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/MemoryLock.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/MemoryLock.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariant.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariant.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariant.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariant.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariant.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariant.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariant.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariant.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariantConversions.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariantConversions.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariantConversions.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariantConversions.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariantConversions.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariantConversions.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariantConversions.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/PropVariantConversions.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/StdAfx.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/StdAfx.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/StdAfx.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/StdAfx.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/Synchronization.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Synchronization.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/Synchronization.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Synchronization.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/Synchronization.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Synchronization.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/Synchronization.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Synchronization.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/System.cpp b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/System.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/System.cpp
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/System.cpp
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/System.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/System.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/System.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/System.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/Thread.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Thread.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/Thread.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Thread.h
diff --git a/jni/physfs-2.1.0/src/lzma/CPP/Windows/Time.h b/love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Time.h
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CPP/Windows/Time.h
rename to love/src/jni/physfs-2.1.0/src/lzma/CPP/Windows/Time.h
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Common/CRC.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Common/CRC.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Common/CRC.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Common/CRC.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Common/CommandLineParser.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Common/CommandLineParser.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Common/CommandLineParser.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Common/CommandLineParser.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Common/InBuffer.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Common/InBuffer.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Common/InBuffer.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Common/InBuffer.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Common/OutBuffer.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Common/OutBuffer.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Common/OutBuffer.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Common/OutBuffer.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/IMatchFinder.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/IMatchFinder.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/IMatchFinder.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/IMatchFinder.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/LzBinTree.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/LzBinTree.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/LzBinTree.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/LzBinTree.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/LzInWindow.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/LzInWindow.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/LzInWindow.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/LzInWindow.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/LzOutWindow.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/LzOutWindow.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/LzOutWindow.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZ/LzOutWindow.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZMA/LzmaBase.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZMA/LzmaBase.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZMA/LzmaBase.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZMA/LzmaBase.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZMA/LzmaDecoder.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZMA/LzmaDecoder.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZMA/LzmaDecoder.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZMA/LzmaDecoder.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZMA/LzmaEncoder.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZMA/LzmaEncoder.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZMA/LzmaEncoder.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LZMA/LzmaEncoder.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.csproj b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.csproj
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.csproj
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.csproj
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.sln b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.sln
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.sln
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaAlone.sln
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaBench.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaBench.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaBench.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/LzmaBench.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/Properties/AssemblyInfo.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/Properties/AssemblyInfo.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/Properties/AssemblyInfo.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/Properties/AssemblyInfo.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/Properties/Resources.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/Properties/Resources.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/Properties/Resources.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/Properties/Resources.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/Properties/Settings.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/Properties/Settings.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/Properties/Settings.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/LzmaAlone/Properties/Settings.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/RangeCoder/RangeCoder.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/RangeCoder/RangeCoder.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/RangeCoder/RangeCoder.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/RangeCoder/RangeCoder.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/RangeCoder/RangeCoderBit.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/RangeCoder/RangeCoderBit.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/RangeCoder/RangeCoderBit.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/RangeCoder/RangeCoderBit.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/RangeCoder/RangeCoderBitTree.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/RangeCoder/RangeCoderBitTree.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/RangeCoder/RangeCoderBitTree.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/Compress/RangeCoder/RangeCoderBitTree.cs
diff --git a/jni/physfs-2.1.0/src/lzma/CS/7zip/ICoder.cs b/love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/ICoder.cs
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/CS/7zip/ICoder.cs
rename to love/src/jni/physfs-2.1.0/src/lzma/CS/7zip/ICoder.cs
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/CRC.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/CRC.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/CRC.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/CRC.java
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZ/BinTree.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZ/BinTree.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZ/BinTree.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZ/BinTree.java
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZ/InWindow.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZ/InWindow.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZ/InWindow.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZ/InWindow.java
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZ/OutWindow.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZ/OutWindow.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZ/OutWindow.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZ/OutWindow.java
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZMA/Base.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZMA/Base.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZMA/Base.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZMA/Base.java
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZMA/Decoder.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZMA/Decoder.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZMA/Decoder.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZMA/Decoder.java
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZMA/Encoder.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZMA/Encoder.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZMA/Encoder.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/LZMA/Encoder.java
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/BitTreeDecoder.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/BitTreeDecoder.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/BitTreeDecoder.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/BitTreeDecoder.java
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/BitTreeEncoder.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/BitTreeEncoder.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/BitTreeEncoder.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/BitTreeEncoder.java
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/Decoder.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/Decoder.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/Decoder.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/Decoder.java
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/Encoder.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/Encoder.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/Encoder.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/Compression/RangeCoder/Encoder.java
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/ICodeProgress.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/ICodeProgress.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/ICodeProgress.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/ICodeProgress.java
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/LzmaAlone.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/LzmaAlone.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/LzmaAlone.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/LzmaAlone.java
diff --git a/jni/physfs-2.1.0/src/lzma/Java/SevenZip/LzmaBench.java b/love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/LzmaBench.java
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Java/SevenZip/LzmaBench.java
rename to love/src/jni/physfs-2.1.0/src/lzma/Java/SevenZip/LzmaBench.java
diff --git a/jni/physfs-2.1.0/src/lzma/LGPL.txt b/love/src/jni/physfs-2.1.0/src/lzma/LGPL.txt
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/LGPL.txt
rename to love/src/jni/physfs-2.1.0/src/lzma/LGPL.txt
diff --git a/jni/physfs-2.1.0/src/lzma/Methods.txt b/love/src/jni/physfs-2.1.0/src/lzma/Methods.txt
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/Methods.txt
rename to love/src/jni/physfs-2.1.0/src/lzma/Methods.txt
diff --git a/jni/physfs-2.1.0/src/lzma/history.txt b/love/src/jni/physfs-2.1.0/src/lzma/history.txt
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/history.txt
rename to love/src/jni/physfs-2.1.0/src/lzma/history.txt
diff --git a/jni/physfs-2.1.0/src/lzma/lzma.exe b/love/src/jni/physfs-2.1.0/src/lzma/lzma.exe
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/lzma.exe
rename to love/src/jni/physfs-2.1.0/src/lzma/lzma.exe
diff --git a/jni/physfs-2.1.0/src/lzma/lzma.txt b/love/src/jni/physfs-2.1.0/src/lzma/lzma.txt
similarity index 100%
rename from jni/physfs-2.1.0/src/lzma/lzma.txt
rename to love/src/jni/physfs-2.1.0/src/lzma/lzma.txt
diff --git a/jni/physfs-2.1.0/src/physfs.c b/love/src/jni/physfs-2.1.0/src/physfs.c
similarity index 100%
rename from jni/physfs-2.1.0/src/physfs.c
rename to love/src/jni/physfs-2.1.0/src/physfs.c
diff --git a/jni/physfs-2.1.0/src/physfs.h b/love/src/jni/physfs-2.1.0/src/physfs.h
similarity index 100%
rename from jni/physfs-2.1.0/src/physfs.h
rename to love/src/jni/physfs-2.1.0/src/physfs.h
diff --git a/jni/physfs-2.1.0/src/physfs_byteorder.c b/love/src/jni/physfs-2.1.0/src/physfs_byteorder.c
similarity index 100%
rename from jni/physfs-2.1.0/src/physfs_byteorder.c
rename to love/src/jni/physfs-2.1.0/src/physfs_byteorder.c
diff --git a/jni/physfs-2.1.0/src/physfs_casefolding.h b/love/src/jni/physfs-2.1.0/src/physfs_casefolding.h
similarity index 100%
rename from jni/physfs-2.1.0/src/physfs_casefolding.h
rename to love/src/jni/physfs-2.1.0/src/physfs_casefolding.h
diff --git a/jni/physfs-2.1.0/src/physfs_internal.h b/love/src/jni/physfs-2.1.0/src/physfs_internal.h
similarity index 100%
rename from jni/physfs-2.1.0/src/physfs_internal.h
rename to love/src/jni/physfs-2.1.0/src/physfs_internal.h
diff --git a/jni/physfs-2.1.0/src/physfs_miniz.h b/love/src/jni/physfs-2.1.0/src/physfs_miniz.h
similarity index 100%
rename from jni/physfs-2.1.0/src/physfs_miniz.h
rename to love/src/jni/physfs-2.1.0/src/physfs_miniz.h
diff --git a/jni/physfs-2.1.0/src/physfs_platforms.h b/love/src/jni/physfs-2.1.0/src/physfs_platforms.h
similarity index 100%
rename from jni/physfs-2.1.0/src/physfs_platforms.h
rename to love/src/jni/physfs-2.1.0/src/physfs_platforms.h
diff --git a/jni/physfs-2.1.0/src/physfs_unicode.c b/love/src/jni/physfs-2.1.0/src/physfs_unicode.c
similarity index 100%
rename from jni/physfs-2.1.0/src/physfs_unicode.c
rename to love/src/jni/physfs-2.1.0/src/physfs_unicode.c
diff --git a/jni/physfs-2.1.0/src/platform_beos.cpp b/love/src/jni/physfs-2.1.0/src/platform_beos.cpp
similarity index 100%
rename from jni/physfs-2.1.0/src/platform_beos.cpp
rename to love/src/jni/physfs-2.1.0/src/platform_beos.cpp
diff --git a/jni/physfs-2.1.0/src/platform_macosx.c b/love/src/jni/physfs-2.1.0/src/platform_macosx.c
similarity index 100%
rename from jni/physfs-2.1.0/src/platform_macosx.c
rename to love/src/jni/physfs-2.1.0/src/platform_macosx.c
diff --git a/jni/physfs-2.1.0/src/platform_posix.c b/love/src/jni/physfs-2.1.0/src/platform_posix.c
similarity index 100%
rename from jni/physfs-2.1.0/src/platform_posix.c
rename to love/src/jni/physfs-2.1.0/src/platform_posix.c
diff --git a/jni/physfs-2.1.0/src/platform_unix.c b/love/src/jni/physfs-2.1.0/src/platform_unix.c
similarity index 100%
rename from jni/physfs-2.1.0/src/platform_unix.c
rename to love/src/jni/physfs-2.1.0/src/platform_unix.c
diff --git a/jni/physfs-2.1.0/src/platform_windows.c b/love/src/jni/physfs-2.1.0/src/platform_windows.c
similarity index 100%
rename from jni/physfs-2.1.0/src/platform_windows.c
rename to love/src/jni/physfs-2.1.0/src/platform_windows.c
diff --git a/jni/physfs-2.1.0/test/test_physfs.c b/love/src/jni/physfs-2.1.0/test/test_physfs.c
similarity index 100%
rename from jni/physfs-2.1.0/test/test_physfs.c
rename to love/src/jni/physfs-2.1.0/test/test_physfs.c
diff --git a/jni/physfs-2.1.0/test/test_physfs.pl b/love/src/jni/physfs-2.1.0/test/test_physfs.pl
similarity index 100%
rename from jni/physfs-2.1.0/test/test_physfs.pl
rename to love/src/jni/physfs-2.1.0/test/test_physfs.pl
diff --git a/jni/physfs-2.1.0/test/test_physfs.rb b/love/src/jni/physfs-2.1.0/test/test_physfs.rb
similarity index 100%
rename from jni/physfs-2.1.0/test/test_physfs.rb
rename to love/src/jni/physfs-2.1.0/test/test_physfs.rb
diff --git a/love/src/main/AndroidManifest.xml b/love/src/main/AndroidManifest.xml
new file mode 100644
index 00000000..8078c41d
--- /dev/null
+++ b/love/src/main/AndroidManifest.xml
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/org/love2d/android/DownloadActivity.java b/love/src/main/java/org/love2d/android/DownloadActivity.java
similarity index 100%
rename from src/org/love2d/android/DownloadActivity.java
rename to love/src/main/java/org/love2d/android/DownloadActivity.java
diff --git a/src/org/love2d/android/DownloadService.java b/love/src/main/java/org/love2d/android/DownloadService.java
similarity index 100%
rename from src/org/love2d/android/DownloadService.java
rename to love/src/main/java/org/love2d/android/DownloadService.java
diff --git a/src/org/love2d/android/GameActivity.java b/love/src/main/java/org/love2d/android/GameActivity.java
similarity index 100%
rename from src/org/love2d/android/GameActivity.java
rename to love/src/main/java/org/love2d/android/GameActivity.java
diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 00000000..8b03ee16
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1,2 @@
+include 'app'
+include 'love'
\ No newline at end of file