SquirrelJME/SquirrelJME

View on GitHub
modules/squirrel-quarrel/src/main/java/net/multiphasicapps/squirrelquarrel/units/UnitLinker.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
//     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------

package net.multiphasicapps.squirrelquarrel.units;

/**
 * This class is used to keep track of which units are near each other in
 * each of the given megatiles. This increases rendering speed since only units
 * that are linked into megatiles has to be used for the game logic.
 *
 * This does not need actual mega tile references, they just need to be
 * referred to by index.
 *
 * @since 2018/03/18
 */
public final class UnitLinker
{
}