Dat151 progress

This commit is contained in:
dexy
2018-12-25 22:40:49 +11:00
Unverified
parent df34b6f614
commit 05d302a4e1
23 changed files with 3909 additions and 169 deletions
@@ -0,0 +1,36 @@
using CodeWalker.GameFiles;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CodeWalker.Project.Panels
{
public partial class EditAudioEmitterListPanel : ProjectPanel
{
public ProjectForm ProjectForm;
public Dat151AmbientEmitterList CurrentEmitterList { get; set; }
public EditAudioEmitterListPanel(ProjectForm owner)
{
ProjectForm = owner;
InitializeComponent();
}
public void SetEmitterList(Dat151AmbientEmitterList list)
{
CurrentEmitterList = list;
UpdateFormTitle();
}
private void UpdateFormTitle()
{
Text = CurrentEmitterList?.NameHash.ToString() ?? "";
}
}
}