scope

69
reputation
9

I create Java, C#, Javascript, and Lua games. Also, I poke at questions/answers by editing them. I usually don't ask questions or answer questions, but I edit a ton of posts.

public class MyNetwork extends NetworkDumpster {
public MyNetwork() {
    super(new Boy("scope"));
    this.crash();
}

public void empty() {
    Dumpster.empty(this);
}

public void crash() {
    this.empty();
    this.breakSide(Side.CLIENT);
}

}