diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2018-12-05 18:06:45 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2018-12-05 18:06:45 +0100 |
| commit | 34856069f596fc5b88f496153f17c16047d4001a (patch) | |
| tree | 94dcf91a7e2d50cbc78a623abee085fbdd00e968 /src/command.cpp | |
| parent | 804a3de3f0d375f8df838c61fcb1a9959ec29f34 (diff) | |
| download | wanda-34856069f596fc5b88f496153f17c16047d4001a.tar.xz wanda-34856069f596fc5b88f496153f17c16047d4001a.zip | |
core: add change command factory
Diffstat (limited to 'src/command.cpp')
| -rw-r--r-- | src/command.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/command.cpp b/src/command.cpp index 05784b3..6831d5e 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -40,4 +40,9 @@ std::optional<command> make_command(message message) return std::nullopt; } +command make_change_command() +{ + return {command_id::change}; +} + } // namespace wanda
\ No newline at end of file |
