Files
mcmartin cd457db2c7 Part 1 of the content reorganization.
All damage from the initial failed commit should now be repaired.


git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2989 8092fc87-c524-0410-9efc-e669fe64eaf9
2008-05-23 03:24:36 +00:00

25 lines
638 B
Plaintext

#(=========== 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 base/cutscene/ending/victory1.txt
#(Sequence 2 -- blow it up!)
CALL base/cutscene/ending/victory2.txt
#(Sequence 3 -- final slide show)
CALL base/cutscene/ending/final.txt
#(***************************** The End ********************************)