/**
* This file is part of Owlet.
*
* Owlet is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Owlet is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Owlet. If not, see <http://www.gnu.org/licenses/>.
*/
package com.sibext.owlet.view.resourses;
import com.sibext.owlet.R;
import com.sibext.owlet.view.TaskImageViewFromResourse;
import com.sibext.owlet.view.renderer.Renderer;
import android.content.Context;
public class FlagView extends TaskImageViewFromResourse{
public FlagView(Context context, Renderer renderer) {
super(context, renderer);
}
@Override
protected int[] getResourcesIds() {
return new int[]{
R.drawable.flag1,
R.drawable.flag2,
R.drawable.flag3,
R.drawable.flag4,
R.drawable.flag5,
R.drawable.flag6,
R.drawable.flag7,
R.drawable.flag8,
R.drawable.flag9,
R.drawable.flag10,
R.drawable.flag11,
R.drawable.flag12,
R.drawable.flag13,
R.drawable.flag14,
R.drawable.flag15,
R.drawable.flag16,
R.drawable.flag17,
R.drawable.flag18,
R.drawable.flag19,
R.drawable.flag20,
R.drawable.flag21,
};
}
}