From eae1436cbb8e2a688d510c7177ae82f01910de6b Mon Sep 17 00:00:00 2001 From: Shariq Shah Date: Fri, 15 Mar 2019 22:06:53 +1100 Subject: [PATCH] Added .gitgnore and Updated todo.txt --- .gitignore | 3 +++ .hgignore | 3 --- todo.txt | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 .gitignore delete mode 100755 .hgignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..96da2fc --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +bin/* +build/* +.vs/* \ No newline at end of file diff --git a/.hgignore b/.hgignore deleted file mode 100755 index 157a7de..0000000 --- a/.hgignore +++ /dev/null @@ -1,3 +0,0 @@ -bin/* -build/* -CMakeLists.txt.* \ No newline at end of file diff --git a/todo.txt b/todo.txt index a9df0b3..00b1792 100644 --- a/todo.txt +++ b/todo.txt @@ -1,5 +1,4 @@ Todo: - - Migrate from bitbucket to github and from mercurial back to git - Add warning to genie build script when running on windows and WindowsSdkVersion cannot be found. This happens when the script is not run from vcvarsall command prompt ? Rethink/remove the game executable and game library split. - Refactor all global application state into 'Application_Context' struct. A single global instance of which is available everywhere @@ -190,4 +189,5 @@ Done: * Implemented screen coordinate to ray conversion and ray-sphere collision * Split todo and readme into two files * Replace all renderer_check_gl calls with GL_CHECK macro - * Fixed Console bug when enabled in editor mode \ No newline at end of file + * Fixed Console bug when enabled in editor mode + * Migrated from bitbucket to github and from mercurial back to git