LeviLamina
Loading...
Searching...
No Matches
TextObjectScore.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/textobject/ITextObject.h"
7
8// auto generated forward declare list
9// clang-format off
10struct ResolveData;
11namespace Json { class Value; }
12// clang-format on
13
14class TextObjectScore : public ::ITextObject {
15public:
16 // member variables
17 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 TextObjectScore& operator=(TextObjectScore const&);
25 TextObjectScore(TextObjectScore const&);
26 TextObjectScore();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ::std::string asString() const /*override*/;
32
33 virtual ::Json::Value asJsonValue() const /*override*/;
34
35 virtual ::Json::Value resolve(::ResolveData const& resolveData) const /*override*/;
36
37 virtual ~TextObjectScore() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCNAPI TextObjectScore(::std::string name, ::std::string objective);
44 // NOLINTEND
45
46public:
47 // static variables
48 // NOLINTBEGIN
49 MCNAPI static ::std::string const& RAW_TEXT_SCORE_KEY();
50
51 MCNAPI static ::std::string const& RAW_TEXT_SCORE_NAME_KEY();
52
53 MCNAPI static ::std::string const& RAW_TEXT_SCORE_OBJECTIVE_KEY();
54
55 MCNAPI static ::std::string const& RAW_TEXT_SCORE_STAR();
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCNAPI void* $ctor(::std::string name, ::std::string objective);
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67 MCNAPI ::std::string $asString() const;
68
69 MCNAPI ::Json::Value $asJsonValue() const;
70
71 MCNAPI ::Json::Value $resolve(::ResolveData const& resolveData) const;
72
73
74 // NOLINTEND
75
76public:
77 // vftables
78 // NOLINTBEGIN
79 MCNAPI static void** $vftable();
80 // NOLINTEND
81};
Definition ITextObject.h:11
Definition Value.h:16
static MCAPI ::std::string const & RAW_TEXT_SCORE_STAR()
MCAPI::Json::Value $asJsonValue() const
static MCAPI ::std::string const & RAW_TEXT_SCORE_NAME_KEY()
static MCAPI ::std::string const & RAW_TEXT_SCORE_OBJECTIVE_KEY()
MCAPI::std::string $asString() const
MCAPI void * $ctor(::std::string name, ::std::string objective)
static MCAPI void ** $vftable()
MCAPI::Json::Value $resolve(::ResolveData const &resolveData) const
static MCAPI ::std::string const & RAW_TEXT_SCORE_KEY()
MCAPI TextObjectScore(::std::string name, ::std::string objective)
Definition ResolveData.h:5
Definition Alias.h:14