Add Targets to TargetManager (#1364)

This commit is contained in:
MidoriKami 2023-09-07 10:12:19 -07:00 committed by GitHub
parent a12d9df9a2
commit 633894364d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 0 deletions

View file

@ -41,4 +41,16 @@ public interface ITargetManager
/// Set to null to clear the target.
/// </summary>
public GameObject? SoftTarget { get; set; }
/// <summary>
/// Gets or sets the gpose target.
/// Set to null to clear the target.
/// </summary>
public GameObject? GPoseTarget { get; set; }
/// <summary>
/// Gets or sets the mouseover nameplate target.
/// Set to null to clear the target.
/// </summary>
public GameObject? MouseOverNameplateTarget { get; set; }
}