15 lines
226 B
C#
15 lines
226 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace Game
|
||
|
{
|
||
|
public class GameEntry
|
||
|
{
|
||
|
private Game game;
|
||
|
|
||
|
public void Init()
|
||
|
{
|
||
|
Debug.Log("GameEntry");
|
||
|
// this.game = new Game();
|
||
|
}
|
||
|
}
|
||
|
}
|