Skip to content

Commit 310adfc

Browse files
committedFeb 22, 2021
Add virtual file system and dashboard plugin
1 parent f60e4ef commit 310adfc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+454
-175
lines changed
 

‎.vscode/extensions.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"ms-vscode.csharp",
4+
"bierner.lit-html"
5+
]
6+
}

‎OpenMod.Dashboard/DashboardPlugin.cs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using System;
2+
using OpenMod.Core.Plugins;
3+
using OpenMod.API.Plugins;
4+
5+
[assembly: PluginMetadata("OpenMod.Dashboard", DisplayName = "OpenMod Dashboard")]
6+
namespace OpenMod.Dashboard
7+
{
8+
public class DashboardPlugin : OpenModUniversalPlugin
9+
{
10+
public DashboardPlugin(IServiceProvider serviceProvider) : base(serviceProvider)
11+
{
12+
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)
Please sign in to comment.