Skip to content

Instantly share code, notes, and snippets.

@jonathantorres
Created November 25, 2011 23:32
Show Gist options
  • Save jonathantorres/1394665 to your computer and use it in GitHub Desktop.
Save jonathantorres/1394665 to your computer and use it in GitHub Desktop.
package com.examples.navigationmodel.model
{
import flash.display.Sprite;
import org.robotlegs.mvcs.Actor;
/**
* @author Jonathan Torres
*/
public class NavigationModel extends Actor
{
public var currentSection:Sprite;
public var changeTo:Sprite;
public function NavigationModel()
{
super();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment