-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from svencc/feature/make-map-component-pannable
Feature/make map component pannable
- Loading branch information
Showing
69 changed files
with
1,090 additions
and
472 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...a/com/recom/tacview/engine/Updatable.java → ...com/recom/tacview/engine/IsUpdatable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 0 additions & 8 deletions
8
libs/tacviewfx/src/main/java/com/recom/tacview/engine/commands/CommandTemplate.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
libs/tacviewfx/src/main/java/com/recom/tacview/engine/commands/Commandable.java
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...in/java/com/recom/tacview/engine/entitycomponentsystem/component/HandlesInputCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package com.recom.tacview.engine.entitycomponentsystem.component; | ||
|
||
import com.recom.tacview.engine.input.command.IsInputCommand; | ||
import com.recom.tacview.engine.input.command.IsCommand; | ||
import lombok.NonNull; | ||
|
||
public interface HandlesInputCommand { | ||
|
||
void handleInputCommand(@NonNull final IsInputCommand inputCommand); | ||
void handleInputCommand(@NonNull final IsCommand<?> inputCommand); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...x/src/main/java/com/recom/tacview/engine/entitycomponentsystem/component/IsComponent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,4 +53,5 @@ public void propagateDirtyStateToParent() { | |
public void prepareBuffer() { | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...cviewfx/src/main/java/com/recom/tacview/engine/entitycomponentsystem/entity/IsEntity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package com.recom.tacview.engine.entitycomponentsystem.entity; | ||
|
||
import com.recom.tacview.engine.Updatable; | ||
import com.recom.tacview.engine.IsUpdatable; | ||
|
||
public interface IsEntity extends BelongsToEnvironment, HasLocatableComponents, Updatable { | ||
public interface IsEntity extends BelongsToEnvironment, HasLocatableComponents, IsUpdatable { | ||
|
||
} |
4 changes: 2 additions & 2 deletions
4
...c/main/java/com/recom/tacview/engine/entitycomponentsystem/environment/IsEnvironment.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...m/tacview/engine/graphics/Bufferable.java → ...tacview/engine/graphics/IsBufferable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 8 additions & 8 deletions
16
...m/tacview/engine/graphics/Renderable.java → ...tacview/engine/graphics/IsRenderable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.