many stuff

This commit is contained in:
2024-05-07 14:53:29 +05:00
parent 9665402f53
commit 56400e90cd
145 changed files with 383 additions and 3640 deletions
+23 -6
View File
@@ -15,18 +15,35 @@ struct Fcppcoords
{
GENERATED_BODY()
Fcppcoords(int zone_, int house_, int section_, int floor_, int flatid_,int type_=0) {
zone = zone_;
house = house_;
section = section_;
floor = floor_;
flat = flatid_;
type = type_;
}
Fcppcoords() {
zone = -2;
house = -2;
section = -2;
floor = -2;
flat = -2;
type = 0;
}
UPROPERTY(BlueprintReadWrite, category = "default")
int32 flat = -1;
int flat;
UPROPERTY(BlueprintReadWrite, category = "default")
int32 type = 0;
int type;
UPROPERTY(BlueprintReadWrite, category = "default")
int32 zone = 1;
int zone;
UPROPERTY(BlueprintReadWrite, category = "default")
int32 house = -1;
int house;
UPROPERTY(BlueprintReadWrite, category = "default")
int32 section = -1;
int section;
UPROPERTY(BlueprintReadWrite, category = "default")
int32 floor = -1;
int floor;
};