예제 #1
0
    public NormalTicket()
    {
        noraml = this;
        GameObject obj = GameObject.Find(ObjectName.NORMAL_TICKET);

        text = obj.GetComponent <Text>();
    }
예제 #2
0
        public static void PutTicket(this TicketBox box, string name)
        {
            NormalTicket ticket = new NormalTicket(name);

            box.Put(ticket);
        }
        public static void PutNormal(this IAuthorizationService service, RelationModel model, string name)
        {
            NormalTicket ticket = new NormalTicket(name);

            service.PutTicket(model, ticket);
        }
예제 #4
0
 public TiketManager()
 {
     NormalTicket noraml = new NormalTicket();
     SpecalTicket spcal  = new SpecalTicket();
 }