2014-08-23 13:18:53 +03:00
|
|
|
package com.iluwatar;
|
|
|
|
|
2014-08-31 11:27:19 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Strategy interface.
|
2014-10-08 13:42:12 +01:00
|
|
|
*
|
2014-08-31 11:27:19 +03:00
|
|
|
*/
|
2014-08-23 13:18:53 +03:00
|
|
|
public interface DragonSlayingStrategy {
|
|
|
|
|
|
|
|
void execute();
|
2014-10-08 13:42:12 +01:00
|
|
|
|
2014-08-23 13:18:53 +03:00
|
|
|
}
|