TowerData.java 456 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package emu.grasscutter.game.tower;

import java.util.Map;

import dev.morphia.annotations.Entity;
import dev.morphia.annotations.Transient;

@Entity
public class TowerData{
    /**
     * the floor players chose
     */
    int currentFloorId;
    int currentLevel;
    @Transient
    int currentLevelId;

    /**
     * floorId - Record
     */
    Map<Integer, TowerLevelRecord> recordMap;

    @Transient
    int entryScene;
}