- A lotta cleanup - BEd command parser rewrite - Vase class removed - Proper IO system. - A lot more.
15 lines
290 B
C++
15 lines
290 B
C++
#pragma once
|
|
|
|
#include "definitions.h"
|
|
#include "internal/buffer/buffer.h"
|
|
#include "pch.h"
|
|
|
|
namespace bed::internal::functions {
|
|
struct Suffix {
|
|
std::string desc;
|
|
std::function<void(BEd &)> handle;
|
|
|
|
static void register_suffixes(BEd &ctx);
|
|
};
|
|
} // namespace bed::internal::functions
|