Part 1 of the content reorganization.

Be aware that some filenames in moved files were hardcoded,
so this revision is not properly functional; cutscenes will all
break. The next commit will update the files appropriately to fix this.


git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2985 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
mcmartin
2008-05-23 02:07:14 +00:00
parent 958866da6d
commit 523374722f
11323 changed files with 1033 additions and 1033 deletions
@@ -0,0 +1,24 @@
#(=========== This is the PC ending script =========================)
#(**** This script is a wrapper for 3 sequences ****)
#(Clear entire screen first; set size...)
DIMS 320 240
#(... and clear)
CLS
#(Set sequence dimensions; param1=width; param2=height)
DIMS 320 200
#(Everything is drawn within the clipping rect defined by DIMS, from 0, 0)
#(Sequence 1 -- position the bomb)
CALL slides/ending/victory1.txt
#(Sequence 2 -- blow it up!)
CALL slides/ending/victory2.txt
#(Sequence 3 -- final slide show)
CALL slides/ending/final.txt
#(***************************** The End ********************************)