File: scriptinclude.as

package info (click to toggle)
angelscript 2.35.1%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,388 kB
  • sloc: cpp: 71,969; asm: 1,558; makefile: 665; xml: 214; javascript: 42; python: 22; ansic: 22; sh: 7
file content (10 lines) | stat: -rw-r--r-- 284 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
// This file is meant to be included from another script file

// We're allowed to include files in a circular manner, the
// application will include each file only once anyway
#include "script.as"

void includedFunction()
{
    print("I'm now in includedFunction()\n");
}