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 // vIndex: 0
23 virtual ~PackWriteStrategy() = default;
24
25 // vIndex: 1
26 virtual void writeAsset(::PackWriteStrategy::FileName, ::std::string const&) = 0;
27 // NOLINTEND
28
29public:
30 // static functions
31 // NOLINTBEGIN
32 MCNAPI static ::Core::Path getPath(::PackWriteStrategy::FileName path);
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38
39 // NOLINTEND
40};
Definition PackWriteStrategy.h:10
static MCAPI ::Core::Path getPath(::PackWriteStrategy::FileName path)
Definition Path.h:16