Skip to content

Commit

Permalink
+ Add README feature
Browse files Browse the repository at this point in the history
+ Add README content for all 3 engines
* Update NuGet packages
* Small fixes
  • Loading branch information
HgAlexx committed Mar 23, 2021
1 parent f10d20b commit bf87eee
Show file tree
Hide file tree
Showing 26 changed files with 321 additions and 94 deletions.
9 changes: 7 additions & 2 deletions Hg.SaveHistory/API/Engine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public class Engine

public event MessageEventHandler OnMessage;


/// <summary>
/// First LoadProfile event
/// After engine and profile loaded from file
Expand All @@ -65,6 +64,13 @@ public class Engine

public event EventHandlerSnapshotsChanged OnSnapshotsChanges;

/// <summary>
/// Return the content of the README
/// Provides help on how to use the engine
/// </summary>
/// <returns>Must return a string value</returns>
public LuaFunction ReadMe;

public List<EngineSnapshotCategory> Categories { get; } = new List<EngineSnapshotCategory>();

public string Description { get; }
Expand All @@ -88,7 +94,6 @@ public class Engine

public string Title { get; }


[LuaHide] public EngineWatcher Watcher { get; set; }

#endregion
Expand Down
55 changes: 42 additions & 13 deletions Hg.SaveHistory/Forms/FormMain.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit bf87eee

Please sign in to comment.