Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created October 6, 2019 03:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IntegerMan/5e3f2f6757da78ee8ffcbceda620965a to your computer and use it in GitHub Desktop.
Save IntegerMan/5e3f2f6757da78ee8ffcbceda620965a to your computer and use it in GitHub Desktop.
module MattEland.FSharpGeneticAlgorithm.Logic.World
open MattEland.FSharpGeneticAlgorithm.Logic.Actors
open MattEland.FSharpGeneticAlgorithm.Logic.WorldPos
type World =
{ MaxX : int
MaxY : int
Squirrel : Actor
Tree : Actor
Doggo : Actor
Acorn : Actor
Rabbit : Actor }
member this.Actors = [| this.Squirrel; this.Tree; this.Doggo; this.Acorn; this.Rabbit |]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment