Added inital code

main
Brett 2022-12-16 21:59:11 -05:00
parent 11e671ffa2
commit 1b82d84457
5 changed files with 32 additions and 0 deletions

11
Final Project.iml Normal file
View File

@ -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$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

5
commit.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
git add *
git commit
git push -u origin main
git push -u tpgc main

5
src/Main.java Normal file
View File

@ -0,0 +1,5 @@
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

4
src/chess/Board.java Normal file
View File

@ -0,0 +1,4 @@
package chess;
public class Board {
}

View File

@ -0,0 +1,7 @@
package chess;
public abstract class ChessPiece {
public abstract void move();
}