screepsxx/include/Screeps/Effect.hpp
2021-05-30 01:14:25 +03:00

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