I just added this to my about of my game. Looks cool. Here is the old media kit and splash screen as well.
FPLogos.zip (61.2 KB)
FlashPunkSplash.zip (60.7 KB)
import net.flashpunk.Entity;
import net.flashpunk.graphics.Spritemap;
public class FlashPunk extends Entity
{
private var spriteMap:Spritemap;
public function FlashPunk()
{
spriteMap = new Spritemap(Main.art.getBitmap("FLASHPUNK").bitmapData, 100, 100, null);
spriteMap.add("loop", [0, 1, 2, 3, 4], 15, true);
graphic = spriteMap;
spriteMap.play("loop");
}
}