mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-01-28 11:07:58 -06:00
15 lines
189 B
C++
15 lines
189 B
C++
#pragma once
|
|
|
|
#ifndef __EBUBBLETYPE__H__
|
|
#define __EBUBBLETYPE__H__
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eBubbleType : uint32_t {
|
|
DEFAULT = 0,
|
|
ENERGY,
|
|
SKUNK
|
|
};
|
|
|
|
#endif //!__EBUBBLETYPE__H__
|