~eda-qa/dhlib/main

1 by edA-qa mort-ora-y
first
1
/* <license>
2
 * This file is part of the dis-Emi-A HaXe Library. Copyright (c) edA-qa mort-ora-y
3
 * For full copyright and license information please refer to doc/license.txt.
4
 * </license> 
5
 */
6
//demonstrates nameclash in covnersion to AS3
7
class NameClash
8
{
9
	static public function main() 
10
	{
11
		var a : mathx.Matrix = new mathx.Matrix();
12
        var b : flash.geom.Matrix = new flash.geom.Matrix();
13
	}
14
}