summaryrefslogtreecommitdiffstats
path: root/core/binfile.hh
blob: 1e2e6c31bbcdd490972443d12c261a6920ed3e97 (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 */