Theos
❔ Unity Zenject qustion
Hey, I have a question about Zenject.
So I have a class
and I install it like this
then I have a list
List<Test> Tests
What I want to do is somehow make a for-loop that will create and add Test
to Tests
list. I want to make sure that _Smth
and _Foo
are installed using Zenject and I want to pass Id
when I create this object. From my understanding of zenject if i do var test = new Test()
it wont work cuz Something
and Foo
wont be installed right?4 replies
❔ LLVMSharp weird function
Hey, so I'm trynig to convert my class into a LLVM const.
I have a class callled NumberAST:
And I was wondering how to convert it into llvm const.
I found this thingy
LLVMValueRef.CreateConstIntOfString()
but I can't find it in the docs so i'm not sure how to use it20 replies
❔ Maximum path sum in matrix
Given a M x N grid filled with some values I need to find a path from a target node which maximizes the sum of all values along its path.
I can move in any direction. How can I do this? I've found some solutions online but they all go only from the top row to the bottom row when I need to go in all directions from any node.
93 replies
❔ What technology to use?
Hey, I'm working on a MUD type of game, client side will be developed in Unity and server in .NET (most likely).
What technology/frameworks would you recommend me to use to communicate with database - server - client? Also what type of database?
Thanks!
14 replies