18 lines
338 B
C++
18 lines
338 B
C++
#pragma once
|
|
|
|
#include "CommandListViewport.hpp"
|
|
#include "CommandListConcealer.hpp"
|
|
|
|
namespace Stand
|
|
{
|
|
class CommandListWeaponComponents : public CommandListViewport<CommandListConcealer>
|
|
{
|
|
public:
|
|
hash_t weapon = 'DEEZ';
|
|
|
|
explicit CommandListWeaponComponents(CommandList* const parent);
|
|
|
|
void onTickAsActiveList() final;
|
|
};
|
|
}
|