diff --git a/android/project.clj b/android/project.clj deleted file mode 100644 index 3295004..0000000 --- a/android/project.clj +++ /dev/null @@ -1,6 +0,0 @@ -(defproject play-clj-android "0.1.0-SNAPSHOT" - :description "Library for making Android games" - :license {:name "Public Domain" - :url "http://unlicense.org/UNLICENSE"} - :dependencies [[com.badlogicgames.gdx/gdx-backend-android "0.9.9"] - [play-clj "0.1.0-SNAPSHOT"]]) diff --git a/android/src/play_clj/native.clj b/android/src/play_clj/native.clj deleted file mode 100644 index b47346f..0000000 --- a/android/src/play_clj/native.clj +++ /dev/null @@ -1 +0,0 @@ -(ns play-clj.native) diff --git a/desktop/project.clj b/desktop/project.clj deleted file mode 100644 index 3c2bf3f..0000000 --- a/desktop/project.clj +++ /dev/null @@ -1,8 +0,0 @@ -(defproject play-clj-desktop "0.1.0-SNAPSHOT" - :description "Library for making desktop games" - :license {:name "Public Domain" - :url "http://unlicense.org/UNLICENSE"} - :dependencies [[com.badlogicgames.gdx/gdx-backend-lwjgl "0.9.9"] - [com.badlogicgames.gdx/gdx-platform "0.9.9" - :classifier "natives-desktop"] - [play-clj "0.1.0-SNAPSHOT"]]) diff --git a/desktop/src/play_clj/native.clj b/desktop/src/play_clj/native.clj deleted file mode 100644 index b47346f..0000000 --- a/desktop/src/play_clj/native.clj +++ /dev/null @@ -1 +0,0 @@ -(ns play-clj.native) diff --git a/ios/project.clj b/ios/project.clj deleted file mode 100644 index cb00934..0000000 --- a/ios/project.clj +++ /dev/null @@ -1,6 +0,0 @@ -(defproject play-clj-ios "0.1.0-SNAPSHOT" - :description "Library for making iOS games" - :license {:name "Public Domain" - :url "http://unlicense.org/UNLICENSE"} - :dependencies [[com.badlogicgames.gdx/gdx-backend-robovm "0.9.9"] - [play-clj "0.1.0-SNAPSHOT"]]) diff --git a/ios/src/play_clj/native.clj b/ios/src/play_clj/native.clj deleted file mode 100644 index b47346f..0000000 --- a/ios/src/play_clj/native.clj +++ /dev/null @@ -1 +0,0 @@ -(ns play-clj.native) diff --git a/common/project.clj b/project.clj similarity index 75% rename from common/project.clj rename to project.clj index 7a8f44f..9dc7b30 100644 --- a/common/project.clj +++ b/project.clj @@ -2,5 +2,5 @@ :description "Library for making cross-platform games" :license {:name "Public Domain" :url "http://unlicense.org/UNLICENSE"} - :dependencies [[com.badlogicgames.gdx/gdx "0.9.9" :use-resources true] + :dependencies [[com.badlogicgames.gdx/gdx "0.9.9"] [org.clojure/clojure "1.5.1"]]) diff --git a/common/src/play_clj/core.clj b/src/play_clj/core.clj similarity index 100% rename from common/src/play_clj/core.clj rename to src/play_clj/core.clj diff --git a/common/src/play_clj/core_2d.clj b/src/play_clj/core_2d.clj similarity index 100% rename from common/src/play_clj/core_2d.clj rename to src/play_clj/core_2d.clj diff --git a/common/src/play_clj/core_global.clj b/src/play_clj/core_global.clj similarity index 100% rename from common/src/play_clj/core_global.clj rename to src/play_clj/core_global.clj diff --git a/common/src/play_clj/core_render.clj b/src/play_clj/core_render.clj similarity index 100% rename from common/src/play_clj/core_render.clj rename to src/play_clj/core_render.clj diff --git a/common/src/play_clj/utils.clj b/src/play_clj/utils.clj similarity index 100% rename from common/src/play_clj/utils.clj rename to src/play_clj/utils.clj