Ejemplo n.º 1
0
    public CatInfoCls GetCatInfo(int __catNo)
    {
        CatInfoCls temp = null;

        // GET FROM SERVER
        temp.SetInfoRandomize(); // This is dummy

        Debug.Log(temp.GetNo());

        return(temp);
    }
Ejemplo n.º 2
0
    public CatInfoCls[] GetAllCatInfo()
    {
        CatInfoCls[] temp = null;
        // Get From Server
        int allCatAmount = 3; // This is dummy

        for (int i = 0; i < allCatAmount; ++i)
        {
            temp[i] = new CatInfoCls();
            // Get From Server
            temp[i] = GetCatInfo(i);
        }

        return(temp);
    }
Ejemplo n.º 3
0
 public int UpdateCatInfo(CatInfoCls __info) // This is dummy
 {
     return(0);
 }