Agrarsense
Season.h
Go to the documentation of this file.
1// Copyright (c) 2023 FrostBit Software Lab at the Lapland University of Applied Sciences
2//
3// This work is licensed under the terms of the MIT license.
4// For a copy, see <https://opensource.org/licenses/MIT>.
5
6#pragma once
7
8#include "Season.generated.h"
9
10UENUM(BlueprintType)
11enum class ESeason : uint8
12{
13 Spring = 0 UMETA(DisplayName = "Spring"),
14 Summer = 1 UMETA(DisplayName = "Summer"),
15 Autumn = 2 UMETA(DisplayName = "Autumn"),
16 Winter = 3 UMETA(DisplayName = "Winter")
17};
ESeason
Definition: Season.h:12