blob: 5510f33e236590d74c45f446843f7c5cdf3e9d88 [file] [log] [blame]
import '../../util/input_buffer.dart';
class ExrAttribute {
String name;
String type;
int size;
InputBuffer data;
ExrAttribute(this.name, this.type, this.size, this.data);
}