LeviLamina
Loading...
Searching...
No Matches
TargetPoint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct TargetPoint {
6public:
7 // member variables
8 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 TargetPoint& operator=(TargetPoint const&);
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI
28 TargetPoint(float temperature, float humidity, float continentalness, float erosion, float depth, float weirdness);
29 // NOLINTEND
30
31public:
32 // constructor thunks
33 // NOLINTBEGIN
34 MCAPI void*
35 $ctor(float temperature, float humidity, float continentalness, float erosion, float depth, float weirdness);
36 // NOLINTEND
37};
Definition TargetPoint.h:5
Definition Alias.h:14