public NormalTicket() { noraml = this; GameObject obj = GameObject.Find(ObjectName.NORMAL_TICKET); text = obj.GetComponent <Text>(); }
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); }
public TiketManager() { NormalTicket noraml = new NormalTicket(); SpecalTicket spcal = new SpecalTicket(); }