﻿/// <reference path="../Edentity.Global.js" />

Edentity.RegisterNamespace("Cosmo.Modules.LatestTwitterPosts");

(function(LTP) {
    var count = 0;

    LTP.StartTemplating = function () {
        count = 0;
    }
    LTP.Iterate = function() {
        ++count;
    }
    LTP.GetCount = function() {
        return count;
    }
})(Cosmo.Modules.LatestTwitterPosts);
