/data/maps/demo/rooms/

summary refs log tree commit diff stats
path: root/src/com/fourisland/fourpuzzle/gamestate/mapview/event/graphic/BlankEventGraphic.java
blob: 77d383f02e1fb3c5baac09dc37e553eaa31cc938 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.fourisland.fourpuzzle.gamestate.mapview.event.graphic;

import com.fourisland.fourpuzzle.Direction;
import java.awt.image.BufferedImage;

/**
 * BlankEventGraphic specifies an Event without an image.
 *
 * @author hatkirby
 */
public class BlankEventGraphic implements EventGraphic {
    
    private Direction direction;
    private int animationStep;

    public BufferedImage getImage()
    {
        return null;
    }

    public Direction getDirection() {
        return direction;
    }

    public void setDirection(Direction direction) {
        this.direction = direction;
    }

    public int getAnimationStep() {
        return animationStep;
    }

    public void setAnimationStep(int animationStep) {
        this.animationStep = animationStep;
    }

}