Search found 1 match

by jc417
Sat Jun 09, 2018 9:44 pm
Forum: Support and Development
Topic: Styles of writing game code
Replies: 3
Views: 3440

Styles of writing game code

Hello, I've recently downloaded love2d so I can start delving into game development. I started programming in Java, and I'm wondering whether that's restricting me. My "Player" table looks like the following: local Player = {} function Player.new(x, y) player = {} player.x = x player.y = y...