Module Script Template (RickJ): Difference between revisions

From Adventure Game Studio | Wiki
Jump to navigation Jump to search
*>SSH
No edit summary
 
mNo edit summary
Line 1: Line 1:
Rick's module script template:
RickJ's module script template:


<pre>
<pre>

Revision as of 06:56, 8 December 2005

RickJ's module script template:

//===================================================================
// *** AGS MODULE SCRIPT ***
//
// Module:  {Module's name}
//
// Version: {Moduile's current version number}
//
// Require: {List of dependancies} 
//
// Author:  {First} {Last} {(ForumName)}
//
// 1 Abstract
// {paragraph describing what module does}
//        
// 2 Description 
// {multiple subsections describing what module does and}
// {how it works, etc.                                  }                   
// 
// 4 Revision History
// {YY-MM-dd Name  item description }
//
// 5 License
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
// 
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// 
// You should have received a copy of the GNU General Public 
// License along with this program; if not, write to the Free 
// Software Foundation, Inc., 59 Temple Place - Suite 330, 
// Boston, MA  02111-1307, USA.
//
// Copyright (C) {yyyy} {name of copyright holder}
//-------------------------------------------------------------------

//===================================================================
// Constant Definition
//-------------------------------------------------------------------

//===================================================================
// Enumerated Data Types
//-------------------------------------------------------------------

//===================================================================
// Static Variables
//-------------------------------------------------------------------

//===================================================================
// Global Variables
//-------------------------------------------------------------------

//===================================================================
// Utility Functions
//-------------------------------------------------------------------

//===================================================================
// Application Functions
//-------------------------------------------------------------------

//===================================================================
// Global Functions
//-------------------------------------------------------------------