public void addCrewObject(ProtoCrewMember c)
        {
            Notes_CrewObject o = new Notes_CrewObject(c, this);

            if (!allCrew.ContainsKey(c.name))
                allCrew.Add(c.name, o);
        }
        protected override bool assignObject(object obj)
        {
            if (obj == null || obj.GetType() != typeof(Notes_CrewObject))
            {
                return false;
            }

            crewObject = (Notes_CrewObject)obj;

            return true;
        }
        public void addPartCrew(ProtoCrewMember c)
        {
            Notes_CrewObject n = new Notes_CrewObject(c, this);

            if (!partCrew.Contains(n))
                partCrew.Add(n);
        }