18 lines
324 B
Plaintext
18 lines
324 B
Plaintext
|
using UnityEngine;
|
||
|
using System.Collections;
|
||
|
|
||
|
public class BinaryMessageID
|
||
|
{
|
||
|
public static BinaryMessageBase GetMessageObj(int sysID, int cmdID)
|
||
|
{
|
||
|
{BinaryIDs}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public static BinaryMsg_HandleBase GetMessageHandle(int sysID, int cmdID)
|
||
|
{
|
||
|
{BinaryHandles}
|
||
|
return null;
|
||
|
}
|
||
|
}
|