Void
From NWNWiki
[edit] void
A null data type. Functions set to void don't return an assignable value. Only functions of type 'void' can be assigned to the Action Queue.
//Example
void DeductXP(object oPC)
{
// deduct some XP in here...
}
A null data type. Functions set to void don't return an assignable value. Only functions of type 'void' can be assigned to the Action Queue.
//Example
void DeductXP(object oPC)
{
// deduct some XP in here...
}