package com.mygame;
import java.util.Vector;
import loon.geom.RectBox;
public class Switch
{
Vector<Thing> orgblocks;
Vector<Thing> blocks;
int x;
int y;
int height;
int width;
RectBox col;
boolean active;
public Switch()
{
}
public void update(Player player1, Vector<Thing> vector)
{
}
}