mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
22 lines
410 B
C#
22 lines
410 B
C#
namespace MoleMole
|
|
{
|
|
public class PlotMetaData
|
|
{
|
|
public readonly int plotID;
|
|
|
|
public readonly int levelID;
|
|
|
|
public readonly int startDialogID;
|
|
|
|
public readonly int endDialogID;
|
|
|
|
public PlotMetaData(int plotID, int levelID, int startDialogID, int endDialogID)
|
|
{
|
|
this.plotID = plotID;
|
|
this.levelID = levelID;
|
|
this.startDialogID = startDialogID;
|
|
this.endDialogID = endDialogID;
|
|
}
|
|
}
|
|
}
|