mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-14 20:54:16 +01:00
Small Changes.
This commit is contained in:
parent
808dabf600
commit
27c9523bd7
3 changed files with 6 additions and 3 deletions
|
|
@ -27,9 +27,12 @@ public unsafe struct CustomizeData : IEquatable<CustomizeData>, IReadOnlyCollect
|
|||
=> GetEnumerator();
|
||||
|
||||
|
||||
private unsafe byte At(int index)
|
||||
public byte At(int index)
|
||||
=> Data[index];
|
||||
|
||||
public void Set(int index, byte value)
|
||||
=> Data[index] = value;
|
||||
|
||||
public void Read(void* source)
|
||||
{
|
||||
fixed (byte* ptr = Data)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue