blob: a686242f891a85fda479b3dff5570290f7049f58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "api/Event.h"
//tags
static constexpr const char * BUY_BULLET = "BUY_BULLET";
static constexpr const char * SELECT_BULLET = "SELECT_BULLET";
static constexpr const char * BUY_BUBBLE = "BUY_BUBBLE";
static constexpr const char * SELECT_BUBBLE = "SELECT_BUBBLE";
//save_data
static constexpr const char * BUY_BULLET_SAVE = "BUY_BULLET_SAVE";
static constexpr const char * BUY_BUBBLE_SAVE = "BUY_BUBBLE_SAVE";
struct ShopUpdate : public crepe::Event {};
|