1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
silica-viewer/Dependencies/PSDWriter/Shared/PSDLayer.m

23 lines
341 B
Mathematica
Raw Normal View History

//
// PSDLayer.m
// PSDWriterLibrary
//
// Created by Ben Gotow on 3/8/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import "PSDLayer.h"
@implementation PSDLayer
@synthesize imageData, name, opacity, rect, blendMode;
- (void)dealloc
{
[imageData release];
[name release];
[super dealloc];
}
@end