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 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCNAPI TextObjectScore(::std::string name, ::std::string objective);
42 // NOLINTEND
43
44public:
45 // static variables
46 // NOLINTBEGIN
47 MCNAPI static ::std::string const& RAW_TEXT_SCORE_KEY();
48
49 MCNAPI static ::std::string const& RAW_TEXT_SCORE_NAME_KEY();
50
51 MCNAPI static ::std::string const& RAW_TEXT_SCORE_OBJECTIVE_KEY();
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCNAPI void* $ctor(::std::string name, ::std::string objective);
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCNAPI ::std::string $asString() const;
64
65 MCNAPI ::Json::Value $asJsonValue() const;
66
67 MCNAPI ::Json::Value $resolve(::ResolveData const& resolveData) const;
68
69
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCNAPI static void** $vftable();
76 // NOLINTEND
77};
Definition ITextObject.h:11
Definition Value.h:16
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