This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Capslock::Esc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///////////////////////////////////////////////////// | |
// Download this file to C:\Users\USER\Documents\Warcraft III\CustomKeyBindings | |
// Customized for Lefthanded Keyboard Alignment (QWEASZ) | |
// Simply place this Customkeys.txt file into your WC3 | |
// folder usually under Documents or Program Files then | |
// in the game options Enable Custom Keyboard Shortcuts | |
/////////////////////////////////////////////////////// | |
///////////////////////////////////////////////////////// | |
// This Custom Keys setup aligns all races units, heroes, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
from typing import List | |
from pprint import pprint | |
from dataclasses import dataclass, field | |
debug = False | |
@dataclass | |
class Item: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef MATRIX_H | |
#define MATRIX_H | |
#include <algorithm> | |
#include <cmath> | |
#include <cstdint> | |
#include <fstream> | |
#include <initializer_list> | |
#include <iostream> | |
#include <random> |