//		PictPane.cpp//		http://www-acs.ucsd.edu/~jstrout/macdev/panes///		last modified: 11/12/96#include "PictPane.h"PictPane::PictPane( const short resID ){	mPicHandle = GetPicture(resID);	if (mPicHandle) {		mFrame = (*mPicHandle)->picFrame;	}}		void PictPane::Draw(){	if (mHidden || !mPicHandle) return;	DrawPicture( mPicHandle, &mFrame );}
