7 lines
86 B
C++
7 lines
86 B
C++
#pragma once
|
|
|
|
namespace Events {
|
|
enum GUI {
|
|
START, HIT, MISS, DEAD, LOOT
|
|
};
|
|
}
|