mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-09 20:08:57 +03:00
11 lines
250 B
C++
11 lines
250 B
C++
#pragma once
|
|
#include "Nuake/Scripting/NetModules/NetAPIModule.h"
|
|
|
|
class EditorNetAPI : public Nuake::NetAPIModule
|
|
{
|
|
public:
|
|
virtual const std::string GetModuleName() const override { return "Editor"; }
|
|
|
|
virtual void RegisterMethods() override;
|
|
|
|
}; |