Are they possible in Amnesia? Looking at the AngelScript documentation (well the google cache anyways, site seems to be down at the time of me writing this), is says the syntax is something like:
array<string> name = {"string1","string2"}
However, when I do this, I get an error:
main (145, 14): ERR: Expected '('
Just to be clear, 145 is the line where I am declaring the array, the exact line is:
array<string> sound = {"29_wind.snt", "general_wind_blow.snt", "scare_wind.snt", "scare_wind_reverse.snt"};
Also, if there's a better way to accomplish what I'm trying to do, let me know.