Package me.daddychurchill.CityWorld.Rooms

Examples of me.daddychurchill.CityWorld.Rooms.PlatRoom


  public void drawFixtures(WorldGenerator generator, RealChunk chunk,
      Odds odds, int floor, int x, int y, int z, int width,
      int height, int depth, Facing sideWithWall, Material materialWall, Material materialGlass) {
   
    PlatRoom roomGen = getRandomRoomGenerator(odds);
    if (roomGen != null)
      roomGen.drawFixture(generator, chunk, odds, floor, x, y, z, width, height, depth, sideWithWall, materialWall, materialGlass);
  }
View Full Code Here

TOP

Related Classes of me.daddychurchill.CityWorld.Rooms.PlatRoom

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.