Module: Lich::GameBase::GameInstance

Defined in:
documented/games.rb

Overview

Game instance interface for game-specific behaviors Game instance interface for game-specific behaviors Provides methods that must be implemented by game instances

Examples:

Creating a game instance

class MyGameInstance < GameBase::GameInstance::Base
  def clean_serverstring(server_string)
    # Implementation here
  end
end

Defined Under Namespace

Classes: Base