Skip to content

Commit

Permalink
change team name
Browse files Browse the repository at this point in the history
  • Loading branch information
savannahwild committed Jan 22, 2024
1 parent eaee0ea commit 093ed1c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<properties>
<!-- FIXME Fill in these properties - they need to be lowercase -->
<yourteam>shaun</yourteam>
<yourteam>what-a-game</yourteam>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
Expand All @@ -30,7 +30,7 @@
<id>github</id>
<name>GitHub Packages</name>
<!-- FIXME Fill in these properties -->
<url>https://maven.pkg.github.com/YOUR_GITHUB_USERNAME/YOUR_PROJECT_NAME</url>
<url>https://maven.pkg.github.com/savannahwild/what-a-game</url>
</repository>
</distributionManagement>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
package com.thg.accelerator23.connectn.ai.yourteam;

package com.thg.accelerator23.connectn.ai.whatagame;
import com.thehutgroup.accelerator.connectn.player.Board;
import com.thehutgroup.accelerator.connectn.player.Counter;
import com.thehutgroup.accelerator.connectn.player.Player;


public class NameAi extends Player {
public NameAi(Counter counter) {
public class WhatAGameAi extends Player {
public WhatAGameAi(Counter counter) {
//TODO: fill in your name here
super(counter, NameAi.class.getName());
super(counter, WhatAGameAi.class.getName());
}

@Override
Expand Down

0 comments on commit 093ed1c

Please sign in to comment.