/ff_game_tools_proto

Tools related to ff_game_library

Primary LanguageC#MIT LicenseMIT

Ferret Face Game Tools

This is a set of tools to go along with the ff_game_library.

git clone --recursive https://github.com/spadapet/ff_game_tools.git

Build from Visual Studio 2019

  1. Open solution game_tools.sln
  2. Build Solution (just Ctrl-Shift-B)

Build from the command line

  1. Download nuget.exe
  2. Open a Visual Studio 2019 developer command prompt
  3. Run: nuget.exe restore game_tools.sln
  4. Run: msbuild.exe game_tools.sln
    • Or for a specific type of build: msbuild.exe /p:Configuration=Release|Debug game_tools.sln

Coding style

  • Follow the code formatting as defined in .editorconfig
  • Casing
    • snake_case for all functions, classes, variables, etc.
    • PascalCase for all template parameter names
  • Generally don't use "var" to be lazy about variable type names