hwanyoung2
Config
Content
Intermediate
Platforms
Plugins
FMODStudio
Content
Docs
Intermediate
Resources
Source
FMODAudioLink
FMODAudioLinkEditor
FMODStudio
FMODStudioEditor
Classes
FMODAmbientSoundActorFactory.h
FMODAssetBuilder.h
FMODGenerateAssetsCommandlet.h
Private
Public
FMODStudioEditor.Build.cs
FMODStudio.uplugin
FMODStudioNiagara
Source
.editorconfig
.gitattributes
.gitignore
.vsconfig
hwanyoung2.uproject
shadertoolsconfig.json
21 lines
418 B
C++
21 lines
418 B
C++
// Copyright (c), Firelight Technologies Pty, Ltd.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Commandlets/Commandlet.h"
|
|
#include "FMODGenerateAssetsCommandlet.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class UFMODGenerateAssetsCommandlet : public UCommandlet
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
//~ Begin UCommandlet Interface
|
|
virtual int32 Main(const FString &Params) override;
|
|
//~ End UCommandlet Interface
|
|
};
|