// Near Infinity - An Infinity Engine Browser and Editor // Copyright (C) 2001 - 2005 Jon Olav Hauglid // See LICENSE.txt for license information package org.infinity.resource.wmp; import java.nio.ByteBuffer; import org.infinity.resource.AbstractStruct; class AreaLinkSouth extends AreaLink { // WMP/AreaLinkSouth-specific field labels public static final String WMP_LINK_SOUTH = "North link"; AreaLinkSouth() throws Exception { super(WMP_LINK_SOUTH); } AreaLinkSouth(AbstractStruct superStruct, ByteBuffer buffer, int offset, int number) throws Exception { super(superStruct, buffer, offset, WMP_LINK_SOUTH + " " + number); } }