File WfEnums.h

File List > game > include > WfEnums.h

Go to the documentation of this file

#ifndef WFENUMS_H
#define WFENUMS_H

enum WfSeason
{
    Spring,
    Summer,
    Autumn,
    Winter,
    NumSeasons
};

enum WfDirection
{
    Up,
    Down,
    Left,
    Right,
    NumDirections
};


enum WfActionAnimation
{
    WfNoActionAnim,
    WfSlashAnim,
    WfThrustAnim
};


#endif