Skip to content

Instantly share code, notes, and snippets.

View ngynkvn's full-sized avatar
🐈

Kevin Nguyen ngynkvn

🐈
  • Florida
View GitHub Profile
#include "Search.h"
#include <iostream>
namespace Search
{
std::vector<Coord> dirRook = {Coord(0, 1), //The 4 Ray directions rooks can slide to (raymove)
Coord(0, -1),
Coord(1, 0),
Coord(-1, 0)};
@ngynkvn
ngynkvn / parser.cpp
Last active September 20, 2022 21:44
not sure what this was for
enum TOKEN_TYPE
{
TOK_OPAREN,
TOK_CPAREN,
TOK_OPERATOR,
TOK_FOR,
TOK_BEGIN,
TOK_END,
TOK_DELIMITER,