forked from aedenthorn/StardewValleyMods
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
94e68da
commit 9b56373
Showing
29 changed files
with
2,097 additions
and
328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using Microsoft.Xna.Framework; | ||
using StardewValley.Menus; | ||
using System.Collections.Generic; | ||
|
||
namespace ContentPatcherEditor | ||
{ | ||
public class ConfigSetup | ||
{ | ||
public string oldKey; | ||
public Dictionary<Vector2, string> labels = new(); | ||
public TextBox Key; | ||
public TextBox Default; | ||
public List<TextBox> AllowValues = new(); | ||
public ClickableTextureComponent DeleteCC; | ||
public ClickableTextureComponent AllowValuesAddCC; | ||
public List<ClickableTextureComponent> AllowValuesSubCCs = new(); | ||
public ClickableTextureComponent AllowBlank; | ||
public ClickableTextureComponent AllowMultiple; | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
using StardewModdingAPI; | ||
using System.Collections.Generic; | ||
|
||
namespace ContentPatcherEditor | ||
{ | ||
public class ContentPatcherPack | ||
{ | ||
internal MyManifest manifest; | ||
internal ContentPatcherContent content; | ||
internal string directory; | ||
public MyManifest manifest; | ||
public ContentPatcherContent content; | ||
public string directory; | ||
public List<KeyValuePair<string, ConfigVar>> config; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.