oeed / Silica

The next generation ComputerCraft GUI Framework by oeed
MIT License
19 stars 2 forks source link

InterfaceLinks #13

Closed oeed closed 8 years ago

oeed commented 8 years ago

InterfaceLinks can once again been made, this time using a better syntax that uses the new class system, rather than having a hacky name based system from before.


class "TestApplicationContainer" extends "ApplicationContainer" {

    theButton = Button( "button" ).link;

}

function TestApplicationContainer.theButton:action( ActionInterfaceEvent event )

end