Old Plugin for our Minecraft Server compatible with Minecraft v1.6 and below. See 'TwosideKeeper' project for the new and improved update.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SigMinecraft/BankEconomyMod/src/me/kaZep/Base/TempWeb.java

12 lines
213 B

package me.kaZep.Base;
import org.bukkit.Location;
public class TempWeb {
public Location loc;
public int timer;
public TempWeb(Location loc, int timer) {
this.loc=loc;
this.timer=timer;
}
}