Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import skyui.widgets.WidgetBase;
- class ExampleWidget extends WidgetBase
- {
- var PlayerNameText: TextField;
- public function ExampleWidget()
- {
- super();
- PlayerNameText.text = "Unknown";
- }
- // @Papyrus
- public function setVisible(a_visible: Boolean): Void
- {
- _visible = a_visible;
- }
- // @Papyrus
- public function setPlayerName(a_text: String): Void
- {
- PlayerNameText.text = a_text;
- }
- }
Add Comment
Please, Sign In to add comment