1e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy/*
2e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy * Copyright (C) 2009 The Android Open Source Project
3e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy *
4e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy * Licensed under the Apache License, Version 2.0 (the "License");
5e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy * you may not use this file except in compliance with the License.
6e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy * You may obtain a copy of the License at
7e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy *
8e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy *      http://www.apache.org/licenses/LICENSE-2.0
9e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy *
10e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy * Unless required by applicable law or agreed to in writing, software
11e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy * distributed under the License is distributed on an "AS IS" BASIS,
12e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy * See the License for the specific language governing permissions and
14e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy * limitations under the License.
15e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy */
16e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy
17e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guypackage com.android.wallpaper.galaxy;
18e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy
1944da17844aa73a047a1f1ff67b4794ea330be3b5Romain Guyimport com.android.wallpaper.RenderScriptWallpaper;
20e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy
2144da17844aa73a047a1f1ff67b4794ea330be3b5Romain Guypublic class GalaxyWallpaper extends RenderScriptWallpaper<GalaxyRS> {
2244da17844aa73a047a1f1ff67b4794ea330be3b5Romain Guy    protected GalaxyRS createScene(int width, int height) {
2344da17844aa73a047a1f1ff67b4794ea330be3b5Romain Guy        return new GalaxyRS(width, height);
24e04d27e0532ed819f7bc790917ff7f24c4338b6fRomain Guy    }
2544da17844aa73a047a1f1ff67b4794ea330be3b5Romain Guy}
26