Skip to content

Commit

Permalink
updated code for Ludii v1.1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisSoemers committed Apr 23, 2021
1 parent 74e987c commit d98cbf7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/ludii_tutorials/GameLoading.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import java.util.List;

import game.Game;
import util.GameLoader;
import other.GameLoader;

/**
* Example class showing how we can load games.
Expand Down
2 changes: 1 addition & 1 deletion src/ludii_tutorials/ListLudiiGames.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import main.CommandLineArgParse.ArgOption;
import main.CommandLineArgParse.OptionTypes;
import main.FileHandling;
import util.GameLoader;
import other.GameLoader;

/**
* Example class which lists built-in Ludii games (optionally only ones
Expand Down
10 changes: 5 additions & 5 deletions src/ludii_tutorials/RunningTrials.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
import java.util.List;

import game.Game;
import util.AI;
import util.Context;
import util.GameLoader;
import util.Trial;
import util.model.Model;
import other.AI;
import other.GameLoader;
import other.context.Context;
import other.model.Model;
import other.trial.Trial;
import utils.RandomAI;

/**
Expand Down
2 changes: 1 addition & 1 deletion test/game_loading/TestGameLoading.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import org.junit.Test;

import game.Game;
import util.GameLoader;
import other.GameLoader;

/**
* Unit tests to make sure that our game loading code runs as expected for
Expand Down
10 changes: 5 additions & 5 deletions test/running_trials/TestRunningTrials.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
import org.junit.Test;

import game.Game;
import util.AI;
import util.Context;
import util.GameLoader;
import util.Trial;
import util.model.Model;
import other.AI;
import other.GameLoader;
import other.context.Context;
import other.model.Model;
import other.trial.Trial;
import utils.RandomAI;

/**
Expand Down

0 comments on commit d98cbf7

Please sign in to comment.