18 lines
283 B
Plaintext
18 lines
283 B
Plaintext
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class PHomeLottery : MonoBehaviour
|
|
{
|
|
|
|
[SerializeField]
|
|
protected Sprite m_desImage;
|
|
public Sprite DesImage
|
|
{
|
|
get
|
|
{
|
|
return m_desImage;
|
|
}
|
|
}
|
|
}
|