Greatsword Miniature

Greatsword Miniature

This is the source miniature (from my family gaming group) that I’ve been using to guide me while creating the greatsword wielder.


Great Sword Wielder

Great Sword Wielder

This time, I’ve used a new system I made to model the head.


More Weapons (and Accessories)

More Weapons (and Accessories)

Just another small handful while I continue to work on the Head Model builder…


Battery (of Ranged Weapons) Included

…and an assortment of ranged weapons

Ranged Weapons


2D Armory

Just a little of what I’ve been doing using Kaxaml, my Latitude 10 Essentials, and my “spare” time.

weapons


params go in, IEnumerable goes out…

Just a little piece of goodness when you need an IEnumerable, but don’t want to construct an array or list. Simply pass all the elements to this little function (which takes a params array), and it gives it all back to you as an IEnumerable. All genericized for your convenience.

private static IEnumerable<Any> GetEnumerable<Any>(params Any[] any)
{
    return any;
}