From 6deddba56fb98bc01f08c4d984718ea52d9efdbe Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 2 Mar 2025 17:35:13 -0500 Subject: [PATCH] Add more documentation for Guid --- src/structure/guid.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/structure/guid.rs b/src/structure/guid.rs index ee3680e..b31a32a 100644 --- a/src/structure/guid.rs +++ b/src/structure/guid.rs @@ -3,12 +3,18 @@ use std::fmt; use crate::property::PropertyBase; -// See https://dev.epicgames.com/documentation/en-us/unreal-engine/API/Runtime/Core/Misc/FGuid +/// A globally unique identifier. +/// +/// See [the Unreal Engine documentation](https://dev.epicgames.com/documentation/en-us/unreal-engine/API/Runtime/Core/Misc/FGuid?application_version=4.27). #[binrw] pub struct Guid { + /// Private. pub a: u32, + /// Holds the second component. pub b: u32, + /// Holds the third component. pub c: u32, + /// Holds the fourth component. pub d: u32, }