Skip to content

Commit ef528fc

Browse files
committed
Resources importer
1 parent 10e0544 commit ef528fc

17 files changed

+883
-76
lines changed

DataStructure/ProjectObj.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,14 @@ class ProjectObj
1212
public String projName;
1313
public List<String> fileList;
1414
public String firstPlot;
15+
public Dictionary<String, String> resourceMap;
16+
public String[] character;
1517

16-
public ProjectObj(String nameIn, List<String> fileDicIn)
18+
public ProjectObj(String nameIn, List<String> fileDicIn, Dictionary<string, string> resourceMapIn)
1719
{
1820
this.projName = nameIn;
1921
this.fileList = fileDicIn;
22+
this.resourceMap = resourceMapIn;
2023
}
2124

2225

DebugPlayer/DebugPlayer.Designer.cs

Lines changed: 129 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

DebugPlayer/DebugPlayer.cs

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Data;
5+
using System.Drawing;
6+
using System.Linq;
7+
using System.Text;
8+
using System.Threading.Tasks;
9+
using System.Windows.Forms;
10+
11+
namespace GameLinesEditor
12+
{
13+
public partial class DebugPlayer : Form
14+
{
15+
private String releasePath;
16+
public DebugPlayer(String releasePathIn)
17+
{
18+
InitializeComponent();
19+
this.releasePath = releasePathIn;
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)