Difference between revisions of "NetExaltedXP/Data"

From Exalted - Unofficial Wiki
Jump to: navigation, search
m
 
m (link fix)
Line 1: Line 1:
 
== Data Class ==
 
== Data Class ==
A simple class, holding the name and value for just about everything in NetExalted, helping us to create a faux Python / PHP style of referencing data.
+
A simple class, holding the name and value for just about everything in [[NetExalted]], helping us to create a faux Python / PHP style of referencing data.
 
=== Data Members ===
 
=== Data Members ===
 
* String Name
 
* String Name

Revision as of 09:04, 3 April 2010

Data Class

A simple class, holding the name and value for just about everything in NetExalted, helping us to create a faux Python / PHP style of referencing data.

Data Members

  • String Name
  • String Value

Private Function

  • boolean SetName (String Name)
    • The Name ought to be set during initialization, if possible.

Public Functions

  • String GetName ()
  • boolean SetValue (String Value)
  • String GetValue ()

Comments