sashimikitty
good c# learning resources for game dev?
well, generally learning any language helps you a lot on learning other languages, once u learn and understand c# u can easily work with python, c++, java, rubby ect..
But yes each engine doesnt have "the language for games", unreal does c++ and blueprints, unity does c#, godot does c# and godot language, game maker does GML, ect
10 replies
what are hashtags for in C#?
its basically a line that executes only when the scripts compiles, for example:
#undef DEBUG (makes DEBUG tag to false)
#if DEBUG
all the code here doesnt get compiled, its like it never existed and wont show in the decompiled dll
#endif
21 replies