25 lines
424 B
C++
25 lines
424 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "SCompoundWidget.h"
|
|
#include "Midi/MidiType.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class ARONA_API SPlayListTrackHead : public SCompoundWidget
|
|
{
|
|
public:
|
|
SLATE_BEGIN_ARGS(SPlayListTrackHead)
|
|
{}
|
|
|
|
|
|
SLATE_END_ARGS()
|
|
|
|
/** Constructs this widget with InArgs */
|
|
void Construct(const FArguments& InArgs);
|
|
private:
|
|
};
|