Added serverScript library

This commit is contained in:
Anonymous
2014-01-15 08:16:35 -07:00
parent cd733bb815
commit 7d149b2784
108 changed files with 77617 additions and 1 deletions
@@ -0,0 +1,25 @@
// ScriptParamArchive.h
// Copyright 2000-02, Sony Online Entertainment Inc., all rights reserved.
// Author: Justin Randall
#ifndef _INCLUDED_ScriptParamArchive_H
#define _INCLUDED_ScriptParamArchive_H
//-----------------------------------------------------------------------
struct Param;
//-----------------------------------------------------------------------
namespace Archive
{
class ReadIterator;
class ByteStream;
void get(Archive::ReadIterator & source, Param & target);
void put(Archive::ByteStream & target, const Param & source);
}
//-----------------------------------------------------------------------
#endif // _INCLUDED_ScriptParamArchive_H