mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
chore: Bump to v13
- Actually makes the api lockut take effect - Fix Intellisense complaints
This commit is contained in:
parent
a776358b96
commit
6a1d5db50e
2 changed files with 2 additions and 2 deletions
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
<PropertyGroup Label="Feature">
|
||||
<Description>XIV Launcher addon framework</Description>
|
||||
<DalamudVersion>12.0.1.5</DalamudVersion>
|
||||
<DalamudVersion>13.0.0.0</DalamudVersion>
|
||||
<AssemblyVersion>$(DalamudVersion)</AssemblyVersion>
|
||||
<Version>$(DalamudVersion)</Version>
|
||||
<FileVersion>$(DalamudVersion)</FileVersion>
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ public readonly unsafe struct AtkValuePtr(nint address) : IEquatable<AtkValuePtr
|
|||
AtkValueType.UInt => this.Struct->UInt,
|
||||
AtkValueType.UInt64 => this.Struct->UInt64,
|
||||
AtkValueType.Float => this.Struct->Float,
|
||||
AtkValueType.String or AtkValueType.String8 or AtkValueType.ManagedString => this.Struct->String == null ? default : this.Struct->String.AsReadOnlySeString(),
|
||||
AtkValueType.String or AtkValueType.String8 or AtkValueType.ManagedString => this.Struct->String.HasValue ? this.Struct->String.AsReadOnlySeString() : default,
|
||||
AtkValueType.WideString => this.Struct->WideString == null ? string.Empty : new string(this.Struct->WideString),
|
||||
AtkValueType.Pointer => (nint)this.Struct->Pointer,
|
||||
_ => throw new NotImplementedException($"AtkValueType {this.ValueType} is currently not supported"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue