summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Framework
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-03-10 11:05:17 -0500
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-03-10 11:05:17 -0500
commitff39e9b1716104e02c92dfd56bb919887873bd3d (patch)
treef6de4195f2647dbfa5a416f3dfd9ac9a5e120377 /src/StardewModdingAPI/Framework
parentedbbb7cff41ba0656bd17774a3d5d99dd321dd9b (diff)
downloadSMAPI-ff39e9b1716104e02c92dfd56bb919887873bd3d.tar.gz
SMAPI-ff39e9b1716104e02c92dfd56bb919887873bd3d.tar.bz2
SMAPI-ff39e9b1716104e02c92dfd56bb919887873bd3d.zip
move generic content properties & methods into separate interface (#173)
Diffstat (limited to 'src/StardewModdingAPI/Framework')
-rw-r--r--src/StardewModdingAPI/Framework/Content/ContentEventBaseHelper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StardewModdingAPI/Framework/Content/ContentEventBaseHelper.cs b/src/StardewModdingAPI/Framework/Content/ContentEventBaseHelper.cs
index 736cdc70..a89fe337 100644
--- a/src/StardewModdingAPI/Framework/Content/ContentEventBaseHelper.cs
+++ b/src/StardewModdingAPI/Framework/Content/ContentEventBaseHelper.cs
@@ -6,7 +6,7 @@ namespace StardewModdingAPI.Framework.Content
{
/// <summary>Base implementation for a content helper which encapsulates access and changes to content being read from a data file.</summary>
/// <typeparam name="TValue">The interface value type.</typeparam>
- internal class ContentEventBaseHelper<TValue> : EventArgs
+ internal class ContentEventBaseHelper<TValue> : EventArgs, IContentEventData<TValue>
{
/*********
** Properties