scaffold.libs_as.starling.display.Sprite.as Maven / Gradle / Ivy
// =================================================================================================
//
// Starling Framework
// Copyright 2011-2015 Gamua. All Rights Reserved.
//
// This program is free software. You can redistribute and/or modify it
// in accordance with the terms of the accompanying license agreement.
//
// =================================================================================================
package starling.display
{
/** A Sprite is the most lightweight, non-abstract container class.
* Use it as a simple means of grouping objects together in one coordinate system.
*
* @see DisplayObject
* @see DisplayObjectContainer
*/
public class Sprite extends DisplayObjectContainer
{
/** Creates an empty sprite. */
public function Sprite()
{
super();
}
}
}