BadKraftMC / TauBetaDelta

TBD is a mining, crafting, building game designed with extensibility at its core.
MIT License
0 stars 0 forks source link

TBDelta: Move `GlowFork` namespace #7

Closed TheBadkraft closed 8 months ago

TheBadkraft commented 8 months ago

general housekeeping

Clean up name space and move GlowFork objects: TBDelta -> TBChi.

TheBadkraft commented 8 months ago

Completed

Changed assignment of exportedTypes as follows:

    private static readonly Type[] exportedTypes = Assembly
        .GetEntryAssembly()     // from .GetExecutingAssembly
        .GetExportedTypes()
        .Where(t => !t.IsAbstract)
        .Where(t => typeof(State).IsAssignableFrom(t))
        .ToArray();