mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 00:33:09 +00:00
Almost there
This commit is contained in:
parent
81498ecce4
commit
1a99a7df80
2 changed files with 4 additions and 14 deletions
|
@ -1,8 +1,8 @@
|
|||
#include "bitboard.h"
|
||||
namespace Bitboards { void init(); }
|
||||
|
||||
Bitboard A[8];
|
||||
Bitboard B[8];
|
||||
Bitboard C;
|
||||
int A[8];
|
||||
int B[8];
|
||||
int C;
|
||||
|
||||
/// Bitboards::init() initializes various bitboard tables. It is called at
|
||||
/// startup and relies on global objects to be already zero-initialized.
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
#ifndef BITBOARD_H_INCLUDED
|
||||
#define BITBOARD_H_INCLUDED
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
typedef uint64_t Bitboard;
|
||||
|
||||
namespace Bitboards { void init(); }
|
||||
|
||||
#endif // #ifndef BITBOARD_H_INCLUDED
|
Loading…
Add table
Reference in a new issue