Add commandlets
This commit is contained in:
parent
79a8202121
commit
5491aecd5f
8 changed files with 298 additions and 23 deletions
26
src/commandlets/lightmapcmd.h
Normal file
26
src/commandlets/lightmapcmd.h
Normal 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;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue