// Text of project MooUnit written on 4/30/97 at 10:38 // Beginning of text file MooUnit.unit // Copyright ©1995 Apple Computer, Inc. All rights reserved. DeclareUnit('|Moo:PIEDTS|, 1, 0, { onomatopoeia: 0, sound: 1, picture: 2, }); // End of text file MooUnit.unit // Beginning of text file MooUnit.f // Copyright ©1995 Apple Computer, Inc. All rights reserved. OpenResFile( Home & "MooUnit.rsrc"); DefConst('kMooSound, GetSoundDeprecated("moo")); DefConst('kMable, GetPICTAsBits("mable", nil)); CloseResFile(); DefineUnit('|Moo:PIEDTS|, { onomatopoeia: "mooooo", sound: kMooSound, picture: kMable, }); // SetPartFrameSlot('text, "MooUnit"); // give extra icon a better name InstallScript := func(partFrame, removeFrame) begin // need this (for now) or we throw end; RemoveScript := func(removeFrame) begin // need this (for now) or we throw end; // End of text file MooUnit.f