Skip to content

Instantly share code, notes, and snippets.

View OlegQt's full-sized avatar

Oleg OlegQt

  • Russia
  • 04:45 (UTC +03:00)
View GitHub Profile
class ExSurfaceView(ctx:Context,atr:AttributeSet,defStyle:Int,resStyle:Int) : SurfaceView(ctx,atr,defStyle,resStyle) {
constructor(ctx:Context):super(ctx){}
constructor(ctx:Context,atr:AttributeSet):super(ctx,atr){}
constructor(ctx:Context,atr:AttributeSet,defStyle:Int):super(ctx,atr,defStyle){}
}