mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-03 04:31:27 +00:00
1 line
240 B
C
1 line
240 B
C
#include "PICT Editor.h"
|
|
|
|
typedef class PictWindow PictWindow, *PictWindowPtr;
|
|
|
|
/*** PICT WINDOW ***/
|
|
class PictWindow
|
|
{
|
|
WindowRef window;
|
|
Rect rect; // size of picture, { 0, 0, x, y }
|
|
|
|
public:
|
|
PictWindow( WindowRef newWindow );
|
|
}; |