Ejemplo n.º 1
0
 void Start()
 {
     if (CollectCoin == null)
     {
         CollectCoin = new CollectEvent();
     }
 }
Ejemplo n.º 2
0
 static internal int WriteCollectEvent(CollectEvent o) {
   DataOperation operation = DataOperation.Parse("writeFSMCollectEvent", o.Id, o.EventTypeId,
                                                 o.FinancialAccountId, o.EventTime, o.OnEventBalance,
                                                 o.PromisedAmount, o.PromisedDate, o.EventNotes,
                                                 o.CollectorId, o.ResolutionTypeId, o.ResolutionDate, o.ResolutionNotes,
                                                 o.AccountOldStatus, o.AccountNewStatus, o.ClosedById,
                                                 o.PostingTime, o.PostedById, o.Status);
   return DataWriter.Execute(operation);
 }
Ejemplo n.º 3
0
 public void RegisterCollectEvent(CollectEvent e)
 {
     m_CollectEvents += e;
 }
Ejemplo n.º 4
0
 void onCollect(CollectEvent e)
 {
     _value++;
     _money.text     = _value.ToString();
     _moneyBack.text = _value.ToString();
 }