mirror of
https://github.com/kirirururu/screepsxx.git
synced 2026-06-14 17:30:42 +00:00
17 lines
225 B
C++
17 lines
225 B
C++
#ifndef SCREEPS_EFFECT_H
|
|
#define SCREEPS_EFFECT_H
|
|
|
|
#include <optional>
|
|
|
|
namespace Screeps {
|
|
|
|
struct Effect
|
|
{
|
|
int effect;
|
|
std::optional<int> level;
|
|
int ticksRemaining;
|
|
};
|
|
|
|
} // namespace Screeps
|
|
|
|
#endif // SCREEPS_EFFECT_H
|