Fix doc comments
This commit is contained in:
@@ -37,21 +37,21 @@ public:
|
||||
virtual ~ISerializable() = default;
|
||||
|
||||
/// <summary>
|
||||
/// Serialize object to the output stream compared to the values of the other object instance (eg. default class object). If other object is null then serialize all properties.
|
||||
/// Serializes object to the output stream compared to the values of the other object instance (eg. default class object). If other object is null then serialize all properties.
|
||||
/// </summary>
|
||||
/// <param name="stream">The output stream.</param>
|
||||
/// <param name="otherObj">The instance of the object to compare with and serialize only the modified properties. If null, then serialize all properties.</param>
|
||||
virtual void Serialize(SerializeStream& stream, const void* otherObj) = 0;
|
||||
|
||||
/// <summary>
|
||||
/// Deserialize object from the input stream
|
||||
/// Deserializes object from the input stream.
|
||||
/// </summary>
|
||||
/// <param name="stream">The input stream.</param>
|
||||
/// <param name="modifier">The deserialization modifier object. Always valid.</param>
|
||||
virtual void Deserialize(DeserializeStream& stream, ISerializeModifier* modifier) = 0;
|
||||
|
||||
/// <summary>
|
||||
/// Deserialize object from the input stream child member. Won't deserialize it if member is missing.
|
||||
/// Deserializes object from the input stream child member. Won't deserialize it if member is missing.
|
||||
/// </summary>
|
||||
/// <param name="stream">The input stream.</param>
|
||||
/// <param name="memberName">The input stream member to lookup.</param>
|
||||
|
||||
@@ -4,11 +4,10 @@
|
||||
|
||||
#include "BaseTypes.h"
|
||||
#include "Engine/Core/Math/Math.h"
|
||||
#include "Engine/Core/Formatting.h"
|
||||
#include "Engine/Core/Templates.h"
|
||||
|
||||
/// <summary>
|
||||
/// Represents the version number made of major, minor, patch and build numbers.
|
||||
/// Represents the version number made of major, minor, build and revision numbers.
|
||||
/// </summary>
|
||||
struct FLAXENGINE_API Version
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user