This commit is contained in:
2024-09-09 16:08:48 -04:00
parent e8528bbdf3
commit d3f8d942c4
16 changed files with 214 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="bluecatcode.junit.4.10.extended" level="project" />
</component>
</module>
+3
View File
@@ -0,0 +1,3 @@
public interface Attack {
void Attacking();
}
+10
View File
@@ -0,0 +1,10 @@
public class Eagle implements Attack{
public static void main(String[] args) {
}
@Override
public void Attacking() {
System.out.println("The Eagle is going crazy and I can't fucking find his prey.");
}
}
+3
View File
@@ -0,0 +1,3 @@
public interface Hide {
void Hiding();
}
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>