Jump to content

GravityWolf

Members
  • Content Count

    2
  • Joined

  • Last visited

Community Reputation

0 Neutral

About GravityWolf

  • Rank
    On the Coast

Contact Methods

  • Website URL
    https://github.com/VanillaPlusPlus
  • Steam
    https://steamcommunity.com/id/GravityWolf
  • Discord
    GravityWolf#6981

Profile Information

  • Gender
    Male
  • Location
    Colorado
  1. GravityWolf

    Zombie Hordes to my server

    https://steamcommunity.com/sharedfiles/filedetails/?id=1733084281 Have fun.
  2. GravityWolf

    WTF are these reference keywords

    I will try to answer your question, but first, I will have to explain the opposite of the ref keyword, and that would be autoptr. autoptr would be concidered a weak reference to memory, and any object variable marked as a autoptr would be removed from memory after hitting the end of the scope, IE the next closing curly bracket. Alternatively, ref is a strong reference forcing the variable to stay in memory until the object's destructor is called, or where ever you plan to release it. I only use ref on class variable types, and the generic types for arrays/maps/sets, but never anything else. You always have my discord if you have questions.
×