home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 April / Gamestar_83_2006-04_dvd.iso / Dema / demowot_english.exe / Script / Source / component.inc < prev    next >
Text File  |  2005-03-11  |  755b  |  26 lines

  1. /* Components functions
  2.  * Interface between the Small script system and 
  3.  * Digital reality GameEngine.
  4.  *
  5.  * (c) Copyright 2002-2003, Digital Reality Kft.
  6.  * This file is provided as is (no warranties).
  7.  */
  8.  
  9. #if defined _component_included
  10.   #endinput
  11. #endif
  12. #define _component_included
  13.  
  14. /* Variable kezel⌡ fⁿggvΘnyek
  15.  * Az ID a GetComponent-tel lekΘrdezett ID.
  16.  */
  17.  
  18. native GetVar( DrID:ID, VariableName[] )
  19. native GetVarString( DrID:ID, VariableName[], MaxLength, Value[] )
  20. // the 4. param is the return value
  21.  
  22. native GetArrayLength( DrID:ID, VariableName[])
  23. native GetArrayVar( DrID:ID, VariableName[], Index )
  24. native GetArrayVarString( DrID:ID, VariableName[], Index, MaxLength, Value[] )
  25. // the 4. param is the return value
  26.