mirror of
https://github.com/UltraCoderRU/screepsxx.git
synced 2026-01-28 10:05:13 +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
|