commit f2a9be6d2efa4a5e28250ccb672a927185546b73
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Sat Feb 8 23:40:27 2020 +0000

    Add forgotten file

diff --git a/src/main/java/org/distorted/magic/RubikScoresView.java b/src/main/java/org/distorted/magic/RubikScoresView.java
new file mode 100644
index 00000000..32c2f4c2
--- /dev/null
+++ b/src/main/java/org/distorted/magic/RubikScoresView.java
@@ -0,0 +1,77 @@
+///////////////////////////////////////////////////////////////////////////////////////////////////
+// Copyright 2020 Leszek Koltunski                                                               //
+//                                                                                               //
+// This file is part of Magic Cube.                                                              //
+//                                                                                               //
+// Magic Cube 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 2 of the License, or                             //
+// (at your option) any later version.                                                           //
+//                                                                                               //
+// Magic Cube 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 Magic Cube.  If not, see <http://www.gnu.org/licenses/>.                           //
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
+package org.distorted.magic;
+
+import android.content.Context;
+import android.util.AttributeSet;
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.FrameLayout;
+import android.widget.LinearLayout;
+import android.widget.TextView;
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
+public class RubikScoresView extends FrameLayout
+  {
+  int mPosition;
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
+  public RubikScoresView(Context context, AttributeSet attrs, int defStyle)
+    {
+    super(context, attrs, defStyle);
+    }
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
+  public RubikScoresView(Context context, AttributeSet attrs)
+    {
+    super(context, attrs);
+    }
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
+  public RubikScoresView(Context context)
+    {
+    super(context);
+    }
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
+  public RubikScoresView(Context context, int position)
+    {
+    super(context);
+
+    mPosition = position;
+    }
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
+  @Override
+  public void onAttachedToWindow()
+    {
+    super.onAttachedToWindow();
+
+    Context context = getContext();
+    View view = inflate(context, R.layout.scores_downloading, null);
+    addView(view);
+    }
+  }
