Navigation
API > API/Runtime > API/Runtime/Core
Enum for the components of a version string.
| Name | EVersionComponent |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/EngineVersionBase.h |
| Include Path | #include "Misc/EngineVersionBase.h" |
Syntax
enum EVersionComponent
{
Major,
Minor,
Patch,
Changelist,
Branch,
}
Values
| Name | Remarks |
|---|---|
| Major | Major version increments introduce breaking API changes. |
| Minor | Minor version increments add additional functionality without breaking existing APIs. |
| Patch | Patch version increments fix existing functionality without changing the API. |
| Changelist | The pre-release field adds additional versioning through a series of comparable dotted strings or numbers. |
| Branch |