Remove "public" from Part interface methods.

This commit is contained in:
kenkeiras 2017-07-04 01:10:23 +02:00
parent 1eb830b71d
commit bfcb25e1a2
1 changed files with 5 additions and 5 deletions

View File

@ -3,12 +3,12 @@ package com.codigoparallevar.minicards.parts;
import android.graphics.Canvas;
public interface Part {
public int getLeft();
public int getRight();
public int getTop();
public int getBottom();
int getLeft();
int getRight();
int getTop();
int getBottom();
public void draw(Canvas canvas);
void draw(Canvas canvas);
void move(int x, int y);
}