12345678910111213141516171819202122232425262728293031323334353637383940 |
- #pragma once
- #include "CoreMinimal.h"
- #include "Commandlets/Commandlet.h"
- #include "GenerateSoundBanksCommandlet.generated.h"
- UCLASS()
- class AUDIOKINETICTOOLS_API UGenerateSoundBanksCommandlet : public UCommandlet
- {
- GENERATED_BODY()
- public:
- UGenerateSoundBanksCommandlet();
-
- virtual int32 Main(const FString& Params) override;
- private:
- void PrintHelp() const;
- };
|