2025-07-15 04:48:01 +00:00
|
|
|
using System;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace DDD
|
|
|
|
{
|
|
|
|
[Serializable]
|
|
|
|
public class RestaurantEnvironmentData
|
|
|
|
{
|
|
|
|
public string Id;
|
|
|
|
public Vector2 Position;
|
2025-07-21 04:20:31 +00:00
|
|
|
|
|
|
|
public RestaurantEnvironmentData(string id, Vector2 position)
|
|
|
|
{
|
|
|
|
Id = id;
|
|
|
|
Position = position;
|
|
|
|
}
|
2025-07-15 04:48:01 +00:00
|
|
|
}
|
|
|
|
}
|