- Code: Select all
Public Class MyPlayer
Inherits BasePlayer
Public Username As String = "Test"
End Class
Yet it isn't showing up when I run the debug server, and all attempts to cast an object of type BasePlayer to type MyPlayer throw an ugly error (obviously because the definition is changed).
All I want is for it to show up somewhere. What am I doing wrong?