NScumm.Scumm.ScummEngine.GetWordVarArgs C# (CSharp) Method

GetWordVarArgs() protected method

protected GetWordVarArgs ( ) : int[]
return int[]
        protected int[] GetWordVarArgs()
        {
            var args = new List<int>();
            while ((_opCode = ReadByte()) != 0xFF)
            {
                args.Add(GetVarOrDirectWord(OpCodeParameter.Param1));
            }
            return args.ToArray();
        }
ScummEngine