OpenNos.GameObject.Character.Update C# (CSharp) Method

Update() public method

public Update ( ) : bool
return bool
        public bool Update()
        {
            try
            {
                CharacterDTO characterToUpdate = this;
                DAOFactory.CharacterDAO.InsertOrUpdate(ref characterToUpdate);
                return true;
            }
            catch (Exception)
            {
                return false;
            }
        }
Character