Skip to content

Commit e44ac68

Browse files
committed
clean6
1 parent 38f585a commit e44ac68

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+151
-152
lines changed

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ allprojects {
3939
project(":engine") {
4040
apply plugin: "java"
4141

42-
4342
dependencies {
4443
compile "com.badlogicgames.ashley:ashley:$ashleyVersion"
4544
compile "com.badlogicgames.box2dlights:box2dlights:$box2DLightsVersion"

engine/src/com/github/vkvam/gnompengine/PhysicsConstants.java renamed to engine/src/com/flatfisk/gnomp/PhysicsConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.vkvam.gnompengine;
1+
package com.flatfisk.gnomp;
22

33

44
public class PhysicsConstants {

engine/src/com/github/vkvam/gnompengine/components/Node.java renamed to engine/src/com/flatfisk/gnomp/components/Node.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.vkvam.gnompengine.components;
1+
package com.flatfisk.gnomp.components;
22

33
import com.badlogic.ashley.core.Component;
44
import com.badlogic.ashley.core.Entity;

engine/src/com/github/vkvam/gnompengine/components/Relative.java renamed to engine/src/com/flatfisk/gnomp/components/Relative.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.vkvam.gnompengine.components;
1+
package com.flatfisk.gnomp.components;
22

33
/**
44
* Created by Vemund Kvam on 04/12/15.

engine/src/com/github/vkvam/gnompengine/components/RelativeComponent.java renamed to engine/src/com/flatfisk/gnomp/components/RelativeComponent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.vkvam.gnompengine.components;
1+
package com.flatfisk.gnomp.components;
22

33
import com.badlogic.ashley.core.Component;
44
import com.badlogic.gdx.utils.Pool;

engine/src/com/github/vkvam/gnompengine/components/Velocity.java renamed to engine/src/com/flatfisk/gnomp/components/Velocity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
package com.github.vkvam.gnompengine.components;
1+
package com.flatfisk.gnomp.components;
22

33
import com.badlogic.ashley.core.Component;
44
import com.badlogic.gdx.utils.Pool;
5-
import com.github.vkvam.gnompengine.math.Translation;
5+
import com.flatfisk.gnomp.math.Translation;
66

77
/**
88
* Created by Vemund Kvam on 05/12/15.

engine/src/com/github/vkvam/gnompengine/components/constructed/PhysicsBody.java renamed to engine/src/com/flatfisk/gnomp/components/constructed/PhysicsBody.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package com.github.vkvam.gnompengine.components.constructed;
1+
package com.flatfisk.gnomp.components.constructed;
22

33

44
import com.badlogic.ashley.core.Component;
55
import com.badlogic.gdx.math.Vector2;
66
import com.badlogic.gdx.physics.box2d.Body;
77
import com.badlogic.gdx.utils.Pool;
8-
import com.github.vkvam.gnompengine.math.Translation;
8+
import com.flatfisk.gnomp.math.Translation;
99

1010
public class PhysicsBody implements Component, Pool.Poolable {
1111
public Body body;

engine/src/com/github/vkvam/gnompengine/components/constructed/PhysicsJoint.java renamed to engine/src/com/flatfisk/gnomp/components/constructed/PhysicsJoint.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
package com.github.vkvam.gnompengine.components.constructed;
1+
package com.flatfisk.gnomp.components.constructed;
22

33

44
import com.badlogic.ashley.core.Component;
55
import com.badlogic.ashley.core.Entity;
66
import com.badlogic.gdx.physics.box2d.Joint;
77
import com.badlogic.gdx.physics.box2d.JointDef;
88
import com.badlogic.gdx.utils.Pool;
9-
import com.github.vkvam.gnompengine.math.Translation;
9+
import com.flatfisk.gnomp.math.Translation;
1010

1111
public class PhysicsJoint implements Component, Pool.Poolable {
1212
public Entity a;

engine/src/com/github/vkvam/gnompengine/components/constructed/Renderable.java renamed to engine/src/com/flatfisk/gnomp/components/constructed/Renderable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.vkvam.gnompengine.components.constructed;
1+
package com.flatfisk.gnomp.components.constructed;
22

33
import com.badlogic.ashley.core.Component;
44
import com.badlogic.gdx.Gdx;

engine/src/com/github/vkvam/gnompengine/components/relatives/OrientationRelative.java renamed to engine/src/com/flatfisk/gnomp/components/relatives/OrientationRelative.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package com.github.vkvam.gnompengine.components.relatives;
1+
package com.flatfisk.gnomp.components.relatives;
22

3-
import com.github.vkvam.gnompengine.components.Node;
4-
import com.github.vkvam.gnompengine.components.Relative;
5-
import com.github.vkvam.gnompengine.components.RelativeComponent;
6-
import com.github.vkvam.gnompengine.math.Translation;
3+
import com.flatfisk.gnomp.components.Node;
4+
import com.flatfisk.gnomp.components.Relative;
5+
import com.flatfisk.gnomp.components.RelativeComponent;
6+
import com.flatfisk.gnomp.math.Translation;
77

88
/**
99
* Created by Vemund Kvam on 05/12/15.

0 commit comments

Comments
 (0)