NScumm.Sky.Logic.FnChangeName C# (CSharp) Method

FnChangeName() private method

private FnChangeName ( uint id, uint textNo, uint c ) : bool
id uint
textNo uint
c uint
return bool
        private bool FnChangeName(uint id, uint textNo, uint c)
        {
            Compact cpt = _skyCompact.FetchCpt((ushort)id);
            cpt.Core.cursorText = (ushort)textNo;
            return true;
        }
Logic