Stubbed out files for networking

This commit is contained in:
2020-03-26 14:25:55 -05:00
parent bb8e210362
commit c18309614f
14 changed files with 194 additions and 4 deletions

View File

@@ -32,9 +32,6 @@ class IMICFPS
end
add_entity(Player.new(spawnpoint: @map_parser.spawnpoints.sample, manifest: Manifest.new(package: "base", name: "character")))
# add_light(Light.new(id: available_light, position: Vector.new(30, 10.0, 30)))
# add_light(Light.new(id: available_light, position: Vector.new(0, 100, 0), diffuse: Color.new(1.0, 0.5, 0.1)))
end
def data
@@ -59,7 +56,6 @@ class IMICFPS
@collision_manager.update
@entities.each(&:update)
# @lights.each(&:update)
end
end
end