summaryrefslogtreecommitdiffstats
path: root/src/core/binfile.hh
blob: 56a3ddcf4e95ece4df8692b95a24143674a7c726 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef CORE_BINFILE_HH
#define CORE_BINFILE_HH 1
#pragma once

struct BinFile final {
    std::byte* buffer;
    std::size_t size;
};

#endif // CORE_BINFILE_HH