Skip to content

Commit

Permalink
Add: Add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Sep 15, 2024
1 parent 7c8f336 commit 172d2c2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions OpenUtau.Core/DawIntegration/Messages.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Text;
using OpenUtau.Core.Ustx;

namespace OpenUtau.Core.DawIntegration {
public class DawMessage {
}

public class UpdateStatusMessage : DawMessage {
public string ustx;
public List<string> mixes;

public UpdateStatusMessage(string ustx, List<string> mixes) {
this.ustx = ustx;
this.mixes = mixes;
}
}
}

0 comments on commit 172d2c2

Please sign in to comment.