Skip to content

Instantly share code, notes, and snippets.

View edmundito's full-sized avatar
♾️

Edmundo Ruiz Ghanem edmundito

♾️
  • Clickpulp, LLC
  • Philadelphia / Filadelfia
View GitHub Profile
@edmundito
edmundito / InterfacePointerExperiment.as
Last active December 11, 2015 01:59
Experiment to see if Class objects can point to interfaces. It does work!
package
{
import flash.display.Sprite;
public class InterfacePointerExperiment extends Sprite
{
public function InterfacePointerExperiment()
{
var clsA:Class = IExample;
var clsB:Class = IExample;