misc: removed vestigial header file from ages ago

This commit is contained in:
maelstrom 2025-04-25 02:02:25 +02:00
parent 4bd1110202
commit d8ffd574f5

View file

@ -1,14 +0,0 @@
#pragma once
#include <variant>
#include "datatypes/primitives.h"
typedef std::variant<VoidData, BoolData, StringData, IntData, FloatData> DataValue;
enum class DataType {
VOID = 0,
BOOL = 1,
STRING = 2,
INT = 3,
FLOAT = 4
};