ComputerCraft Archive

WizardPage

computer utility kepler155c github

Description

ComputerCraft OS

Installation

Copy one of these commands into your ComputerCraft terminal:

wget:wget https://raw.githubusercontent.com/kepler155c/opus/develop-1.8/sys/modules/opus/ui/components/WizardPage.lua wizardpage
Archive:wget https://cc.shobie.xyz/cc/get/gh-kepler155c-opus-sys-modules-opus-ui-components-wizardpage wizardpage
Quick Install: wget https://cc.shobie.xyz/cc/get/gh-kepler155c-opus-sys-modules-opus-ui-components-wizardpage WizardPage

Usage

Run: WizardPage

Tags

none

Source

View Original Source

Code Preview

local class = require('opus.class')
local UI    = require('opus.ui')

UI.WizardPage = class(UI.Window)
UI.WizardPage.defaults = {
	UIElement = 'WizardPage',
	ey = -2,
}
function UI.WizardPage.validate()
	return true
end