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