package baf.guide;
import java.util.*;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

public class Platform extends Item {

  public static Platform forName(String name) throws IOException {
    return new Platform("/platforms/"+name);
  }

  public Platform(String path) throws IOException {
    super(path);
  }

  public String getTag() {
    return(":p");
  }

  public String getDescription() {
    return "Adventure games that run on "+name;
  }
}
