Last active
February 22, 2021 03:17
-
-
Save TheNextGuy32/8df76c4ba54514e4c6f52dc834f38c34 to your computer and use it in GitHub Desktop.
Next Day Games Quick Start
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local GetReplicatedStorage = require(game.ReplicatedStorage:WaitForChild("GetReplicatedStorage")) | |
local class = require(GetReplicatedStorage("middleclass")) | |
local ClassName= class("ClassName") | |
local CSF = require(GetReplicatedStorage("Events/ClientServerFacilitator")) | |
local EventType = require(GetReplicatedStorage("Events/EventType")) | |
function ClassName:initialize(loggingController) | |
if loggingController == nil then | |
error("Server: GameExperienceController -- nil loggingController") | |
end | |
self.loggingController = loggingController | |
end | |
function ClassName:DoAThing() | |
self.loggingController:AThing() | |
end | |
return ClassName |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment