mirror of
https://github.com/Ragora/T2-BoL.git
synced 2026-03-14 01:40:33 +00:00
20 lines
No EOL
601 B
C#
20 lines
No EOL
601 B
C#
//------------------------------------------------------------------------------
|
|
// Save.cs
|
|
// The PDA Save function for BoL RPG mod.
|
|
// Copyright (c) 2012 The DarkDragonDX
|
|
//==============================================================================
|
|
|
|
// Entry Point (called when the client first clicks it)
|
|
function EMailClient::main(%this, %client)
|
|
{
|
|
}
|
|
|
|
// action function, it's called when the client navigates.
|
|
function EMailClient::action(%this, %client, %page)
|
|
{
|
|
}
|
|
|
|
// exit function, it's called when the client exits (returns to PDAMain)
|
|
function EMailClient::exit(%this, %client, %page)
|
|
{
|
|
} |