Skip to content

Instantly share code, notes, and snippets.

@CaglarGonul
Created March 15, 2013 23:08
Show Gist options
  • Save CaglarGonul/5173888 to your computer and use it in GitHub Desktop.
Save CaglarGonul/5173888 to your computer and use it in GitHub Desktop.
FluctGridItem
package com.cgon {
import flash.display.MovieClip;
import flash.display.Sprite;
public class FluctGridItem extends Sprite {
public var row:int;
public var col:int;
public var itemonme:MovieClip;
public function FluctGridItem(piece:MovieClip) {
if (piece != null) {
itemonme = piece;
addChild(itemonme);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment