Hey I'm having a newbie problem with scripts.
I keep getting errors with this kind of code:
base.AddLibDir(_T("sdk\tinyxml"));
Squirrel's strings, behave like C or C++, are delimited by quotation marks(") and can contain escape sequences(\t,\a,\b,\n,\r,\v,\f,\\,\",\',\0,\xhhhh).
Well I need the \t in there so how do I go about doing this? Sorry for the n00b question. :P
Thanks. :)
			
			
			
				base.AddLibDir(_T("sdk\tinyxml"));
 (\t,\a,\b,\n,\r,\v,\f,\\,\",\',\0,\xhhhh)
...maybe this way:
base.AddLibDir(_T("sdk\\tinyxml"));
 ...you could also use this:
base.AddLibDir(_T("sdk/tinyxml"));
 ...but I wonder if if really could be that simple...?! Did I miss something?
			
			
			
				base.AddLibDir(_T("sdk\\tinyxml"));
*or*
base.AddLibDir(_T("sdk/tinyxml"));