mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2026-05-03 20:09:18 -05: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__
|