NScumm.Scumm.ScummEngine.MakeSavegameName C# (CSharp) 메소드

MakeSavegameName() 보호된 메소드

protected MakeSavegameName ( int slot, bool temporary ) : string
slot int
temporary bool
리턴 string
        protected string MakeSavegameName(int slot, bool temporary)
        {
            return string.Format("{0}.{1}{2:D2}", Game.Id, temporary ? 'c' : 's', slot);
        }
ScummEngine