summaryrefslogtreecommitdiff
path: root/android/src/com/artifex/mupdfdemo/TextChar.java
blob: aebf519f9d5809ab7103e3c58dfcbf5cc7b2c44f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.artifex.mupdfdemo;

import android.graphics.RectF;

public class TextChar extends RectF {
	public char c;

	public TextChar(float x0, float y0, float x1, float y1, char _c) {
		super(x0, y0, x1, y1);
		c = _c;
	}
}