Skip to content

Commit

Permalink
(1.5.0) Add legacy villager loading and friendship changes
Browse files Browse the repository at this point in the history
  • Loading branch information
berichan committed Oct 2, 2020
1 parent 07df978 commit bf5c386
Show file tree
Hide file tree
Showing 8 changed files with 899 additions and 37 deletions.
20 changes: 17 additions & 3 deletions ACNHMS_Source/Assets/NativeFileSO/Scripts/SupportedFileType.cs
Expand Up @@ -203,7 +203,7 @@ public class SupportedFileType {

/// <summary>
/// The <see cref="SupportedFileType"/> preset that matches NHI (New Horizons Inventory) files
/// with a .pdf file extension.
/// with a .nhi file extension.
/// </summary>
public static readonly SupportedFileType NHI = new SupportedFileType
{
Expand All @@ -217,7 +217,7 @@ public class SupportedFileType {

/// <summary>
/// The <see cref="SupportedFileType"/> preset that matches NHV (New Horizons Villager) files
/// with a .pdf file extension.
/// with a .nhv file extension.
/// </summary>
public static readonly SupportedFileType NHV = new SupportedFileType
{
Expand All @@ -229,9 +229,23 @@ public class SupportedFileType {
MimeType = "*/*"
};

/// <summary>
/// The <see cref="SupportedFileType"/> preset that matches NHV2 (New Horizons Villager 1.5.0+) files
/// with a .nhv2 file extension.
/// </summary>
public static readonly SupportedFileType NHV2 = new SupportedFileType
{

Name = "NHV2",
Extension = "nhv2",
Owner = true,
AppleUTI = "public.data|public.content",
MimeType = "*/*"
};

/// <summary>
/// The <see cref="SupportedFileType"/> preset that matches NHVH (New Horizons Villager House) files
/// with a .pdf file extension.
/// with a .nhvh file extension.
/// </summary>
public static readonly SupportedFileType NHVH = new SupportedFileType
{
Expand Down

0 comments on commit bf5c386

Please sign in to comment.