Skip to content

Commit

Permalink
Create a new package for routines.
Browse files Browse the repository at this point in the history
  • Loading branch information
vbarthel-fr committed Aug 15, 2013
1 parent c78bff4 commit 048b963
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package fr.tvbarthel.games.chasewhisply.mechanics;

import fr.tvbarthel.games.chasewhisply.mechanics.routine.ReloadingRoutine;
import fr.tvbarthel.games.chasewhisply.mechanics.routine.SpawningRoutine;
import fr.tvbarthel.games.chasewhisply.model.DisplayableItem;
import fr.tvbarthel.games.chasewhisply.model.DisplayableItemFactory;
import fr.tvbarthel.games.chasewhisply.model.GameInformation;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package fr.tvbarthel.games.chasewhisply.mechanics;
package fr.tvbarthel.games.chasewhisply.mechanics.routine;


import fr.tvbarthel.games.chasewhisply.model.TimerRoutine;

public class ReloadingRoutine extends TimerRoutine {
private final IReloadingRoutine mInterface;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package fr.tvbarthel.games.chasewhisply.mechanics;
package fr.tvbarthel.games.chasewhisply.mechanics.routine;

import fr.tvbarthel.games.chasewhisply.model.TimerRoutine;
import fr.tvbarthel.games.chasewhisply.mechanics.routine.TimerRoutine;

public class SpawningRoutine extends TimerRoutine {
private final ISpawningRoutine mInterface;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package fr.tvbarthel.games.chasewhisply.model;
package fr.tvbarthel.games.chasewhisply.mechanics.routine;

import android.os.Handler;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

import fr.tvbarthel.games.chasewhisply.R;
import fr.tvbarthel.games.chasewhisply.model.GameInformation;
import fr.tvbarthel.games.chasewhisply.model.TimerRoutine;
import fr.tvbarthel.games.chasewhisply.mechanics.routine.TimerRoutine;

public class GameScoreFragment extends Fragment implements View.OnClickListener {
public static final String FRAGMENT_TAG = "GameScoreFragment_TAG";
Expand Down

0 comments on commit 048b963

Please sign in to comment.