Esempio n. 1
0
 public FRIEND_UPDATE_PAK(FriendChangeState type, Friend friend, FriendState state, int idx)
 {
     this._state = state;
     this._f     = friend;
     this._type  = type;
     this._index = idx;
 }
 public FRIEND_UPDATE_PAK(FriendChangeState type, Friend friend, int state, int idx)
 {
     _type  = type;
     _state = (FriendState)state;
     _f     = friend;
     _index = idx;
 }
Esempio n. 3
0
 public FRIEND_UPDATE_PAK(FriendChangeState type, Friend friend, int state, int idx)
     : this(type, friend, (FriendState)state, idx)
 {
 }