Created
March 15, 2013 23:08
-
-
Save CaglarGonul/5173888 to your computer and use it in GitHub Desktop.
FluctGridItem
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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