LeviLamina
Loading...
Searching...
No Matches
PackWriteStrategy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Core { class Path; }
8// clang-format on
9
11public:
12 // PackWriteStrategy inner types define
13 enum class FileName : uchar {
14 Manifest = 0,
15 ContentsJSON = 1,
16 TexturesList = 2,
17 };
18
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual ~PackWriteStrategy() = default;
23
24 virtual void writeAsset(::PackWriteStrategy::FileName, ::std::string const&) = 0;
25 // NOLINTEND
26
27public:
28 // static functions
29 // NOLINTBEGIN
30 MCNAPI static ::Core::Path getPath(::PackWriteStrategy::FileName path);
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36
37 // NOLINTEND
38};
Definition Path.h:10
Definition PackWriteStrategy.h:10
static MCAPI ::Core::Path getPath(::PackWriteStrategy::FileName path)