mirror of
https://github.com/Ragora/T2-BoL.git
synced 2026-01-21 20:14:51 +00:00
32 lines
774 B
PHP
32 lines
774 B
PHP
//------------------------------------------------------------------------------
|
|
// PDAApplication.cs
|
|
// Application SDK for the PDA. (to make my life easier)
|
|
// Copyright (c) 2012 Robert MacGregor
|
|
//==============================================================================
|
|
|
|
function PDAApplication::main(%this, %client)
|
|
{
|
|
}
|
|
|
|
function PDAApplication::action(%this, %client, %page)
|
|
{
|
|
}
|
|
|
|
function PDAApplication::exit(%this, %client, %page)
|
|
{
|
|
}
|
|
|
|
// API Functions
|
|
function PDAApplication::setTitle(%this, %title)
|
|
{
|
|
// Won't do anything for now because the title is a clientside thing, actually.
|
|
}
|
|
|
|
function PDAApplication::cls(%this)
|
|
{
|
|
}
|
|
|
|
// The script parses <URL=
|
|
function PDAApplication::setLine(%this, %lineNo, %columnStart, %data)
|
|
{
|
|
} |