本文整理匯總了C#中RakNet.uint24_t類的典型用法代碼示例。如果您正苦於以下問題:C# uint24_t類的具體用法?C# uint24_t怎麽用?C# uint24_t使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
uint24_t類屬於RakNet命名空間,在下文中一共展示了uint24_t類的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: OpMultiply
private uint24_t OpMultiply(uint other) {
uint24_t ret = new uint24_t(RakNetPINVOKE.uint24_t_OpMultiply__SWIG_1(swigCPtr, other), true);
return ret;
}
示例2: CopyData
public uint24_t CopyData(uint a) {
uint24_t ret = new uint24_t(RakNetPINVOKE.uint24_t_CopyData__SWIG_1(swigCPtr, a), false);
return ret;
}
示例3: OpLess
private bool OpLess(uint24_t right) {
bool ret = RakNetPINVOKE.uint24_t_OpLess__SWIG_0(swigCPtr, uint24_t.getCPtr(right));
if (RakNetPINVOKE.SWIGPendingException.Pending) throw RakNetPINVOKE.SWIGPendingException.Retrieve();
return ret;
}
示例4: getCPtr
internal static HandleRef getCPtr(uint24_t obj) {
return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
}
示例5: Equals
public bool Equals(uint24_t right) {
bool ret = RakNetPINVOKE.uint24_t_Equals__SWIG_0(swigCPtr, uint24_t.getCPtr(right));
if (RakNetPINVOKE.SWIGPendingException.Pending) throw RakNetPINVOKE.SWIGPendingException.Retrieve();
return ret;
}
示例6: uint24_t
public uint24_t(uint24_t a) : this(RakNetPINVOKE.new_uint24_t__SWIG_1(uint24_t.getCPtr(a)), true) {
if (RakNetPINVOKE.SWIGPendingException.Pending) throw RakNetPINVOKE.SWIGPendingException.Retrieve();
}
示例7: OpMinusMinus
private uint24_t OpMinusMinus() {
uint24_t ret = new uint24_t(RakNetPINVOKE.uint24_t_OpMinusMinus(swigCPtr), true);
return ret;
}
示例8: Write
public void Write(uint24_t inTemplateVar) {
RakNetPINVOKE.BitStream_Write__SWIG_18(swigCPtr, uint24_t.getCPtr(inTemplateVar));
if (RakNetPINVOKE.SWIGPendingException.Pending) throw RakNetPINVOKE.SWIGPendingException.Retrieve();
}
示例9: SerializeCompressedDelta
public bool SerializeCompressedDelta(bool writeToBitstream, uint24_t inOutTemplateVar) {
bool ret = RakNetPINVOKE.BitStream_SerializeCompressedDelta__SWIG_21(swigCPtr, writeToBitstream, uint24_t.getCPtr(inOutTemplateVar));
if (RakNetPINVOKE.SWIGPendingException.Pending) throw RakNetPINVOKE.SWIGPendingException.Retrieve();
return ret;
}
示例10: ReadCompressedDelta
public bool ReadCompressedDelta(uint24_t outTemplateVar) {
bool ret = RakNetPINVOKE.BitStream_ReadCompressedDelta__SWIG_10(swigCPtr, uint24_t.getCPtr(outTemplateVar));
if (RakNetPINVOKE.SWIGPendingException.Pending) throw RakNetPINVOKE.SWIGPendingException.Retrieve();
return ret;
}
示例11: WriteCompressedDelta
public void WriteCompressedDelta(uint24_t currentValue) {
RakNetPINVOKE.BitStream_WriteCompressedDelta__SWIG_25(swigCPtr, uint24_t.getCPtr(currentValue));
if (RakNetPINVOKE.SWIGPendingException.Pending) throw RakNetPINVOKE.SWIGPendingException.Retrieve();
}