中国象棋控件 v2.0.13
载入中...
搜索中...
未找到
Common.cpp
1
2// 作者:康林 <kl222@126.com>
3// common.cpp: implementation of the common class.
4//
6
7#include "Common.h"
8
9
20int sig(int x)
21{
22 if(x > 0)
23 return 1;
24 if(x < 0)
25 return -1;
26 return 0;
27}