Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Size.as « actionscript « open-flash-chart « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d25437c458c53d6c72dcebd8a62922ec24e46c0b (plain)
1
2
3
4
5
6
7
8
9
10
11
class Size
{
	public var width:Number=0;
	public var height:Number=0;
	
	public function Size( width:Number, height:Number )
	{
		this.width = width;
		this.height = height;
	}
}