blob: 5daa2e949c9a0faf376da0f3151821da829d3293 [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);
}