Liskar

Results 3 comments of Liskar

How about [Dominion](https://github.com/dominion-dev/dominion-ecs-java)?

I managed to do it just now. Appended 3072 (decimal) to all of the offsets you have. Except for new UI code insertion, there is some code at that offset+3072...

I believe no garbage will be allocated on heap with calls like these: int entityId = (int) actor.getUserData().getAddress(); actor.setUserData(NativeObject.wrapPointer(entityId)); because of Escape Analysis mechanism in the Hotspot, you can read...