/**
* Copyright 2008 - 2011
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* @project loonframework
* @author chenpeng
* @email:ceponline@yahoo.com.cn
* @version 0.1
*/
package loon.stg;
import java.util.Hashtable;
import loon.canvas.LColor;
import loon.font.LFont;
import loon.geom.RectBox;
import loon.stg.effect.Picture;
import loon.utils.timer.LTimer;
public class STGPlane {
boolean view = false;
boolean animation = false;
public float posX = 0;
public float posY = 0;
public float rotation = 0;
public LColor drawColor = new LColor(LColor.white);
int animeNo;
int[] animeList;
int planeMode = 0;
float scaleX = 1;
float scaleY = 1;
RectBox rect;
Hashtable<Integer, Integer> images = new Hashtable<Integer, Integer>();
LTimer delay = new LTimer(100);
String str;
LFont font;
LColor color;
Picture draw;
}