Files
I150/srcs/RobotNet10/Components/RobotNet10.ScriptEditor/Helpers/Webcil/WebcilSectionHeaderExtensions.cs
2026-07-03 16:37:12 +07:00

9 lines
316 B
C#

namespace RobotNet10.ScriptEditor.Helpers.Webcil;
internal static class WebcilSectionHeaderExtensions
{
internal static uint GetCorrectedPointerToRawData(this Webcil.WebcilSectionHeader webcilSectionHeader, int offset)
{
return (uint) (webcilSectionHeader.PointerToRawData + offset);
}
}