Skip to content

Commit

Permalink
Move Triple to common package for use by server
Browse files Browse the repository at this point in the history
  • Loading branch information
AntumDeluge committed Jul 15, 2024
1 parent 87c1111 commit 38fc201
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/games/stendhal/client/entity/factory/EntityMap.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/***************************************************************************
* (C) Copyright 2003-2023 - Marauroa *
* (C) Copyright 2003-2024 - Marauroa *
***************************************************************************
***************************************************************************
* *
Expand All @@ -17,7 +17,6 @@

import org.apache.log4j.Logger;

import games.stendhal.client.Triple;
import games.stendhal.client.entity.Block;
import games.stendhal.client.entity.Blood;
import games.stendhal.client.entity.BossCreature;
Expand Down Expand Up @@ -53,6 +52,7 @@
import games.stendhal.client.entity.UseableRing;
import games.stendhal.client.entity.WalkBlocker;
import games.stendhal.client.entity.Wall;
import games.stendhal.common.Triple;

/**
* Registers the relationship between Type, eclass and java class of entity
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* $Id$ */
/***************************************************************************
* (C) Copyright 2003-2023 - Stendhal *
* (C) Copyright 2003-2024 - Stendhal *
***************************************************************************
***************************************************************************
* *
Expand All @@ -17,9 +17,9 @@

import org.apache.log4j.Logger;

import games.stendhal.client.Triple;
import games.stendhal.client.entity.IEntity;
import games.stendhal.client.gui.wt.core.WtWindowManager;
import games.stendhal.common.Triple;

/*
* The entity views are generic, but we don't simply have sufficient data to
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* $Id$ */
/***************************************************************************
* (C) Copyright 2003-2023 - Stendhal *
* (C) Copyright 2003-2024 - Stendhal *
***************************************************************************
***************************************************************************
* *
Expand All @@ -10,7 +10,7 @@
* (at your option) any later version. *
* *
***************************************************************************/
package games.stendhal.client;
package games.stendhal.common;

import java.util.Objects;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* $Id$ */
/***************************************************************************
* (C) Copyright 2003-2023 - Stendhal *
* (C) Copyright 2003-2024 - Stendhal *
***************************************************************************
***************************************************************************
* *
Expand All @@ -24,7 +24,7 @@
import org.junit.Before;
import org.junit.Test;

import games.stendhal.client.Triple;
import games.stendhal.common.Triple;
import marauroa.common.Log4J;

public class EntityViewFactoryTest {
Expand Down

0 comments on commit 38fc201

Please sign in to comment.