biquadris / subscriptions.h
subscriptions.h
Raw
/*
    Subscription class module
    
	enum class of different event names
*/

#ifndef _SUB_H_
#define _SUB_H_

enum class SubscriptionType {
    ScoreChange, BoardLinesCleared, BoardModified, CellModified, ModelInfoChange,
    BlockDropped, BlockDestroyed, SpecialAction, PlayerLose, BlockDroppedByItself,
    HintChange
};

#endif