Interfaces like java

Is there any way I can make and use interfaces in Unity's Javascript like in Java (J2SE)? So an object can implement multiple interfaces?

1 Answer

1

http://unity3d.com/support/documentation/Manual/MonoUpgradeDetails.html

interface IFoo
{
}

interface IMoreFoo
{
}

class Test implements IFoo, IMoreFoo
{
}