Add commandlets

This commit is contained in:
Magnus Norddahl 2025-01-07 06:12:31 +01:00
commit 5491aecd5f
8 changed files with 298 additions and 23 deletions

View file

@ -0,0 +1,26 @@
#pragma once
#include "commandlet.h"
class LightmapCmdletGroup : public CommandletGroup
{
public:
LightmapCmdletGroup();
};
class LightmapBuildCmdlet : public Commandlet
{
public:
LightmapBuildCmdlet();
void OnCommand(FArgs args) override;
void OnPrintHelp() override;
};
class LightmapDeleteCmdlet : public Commandlet
{
public:
LightmapDeleteCmdlet();
void OnCommand(FArgs args) override;
void OnPrintHelp() override;
};