Skip to content
 
 

Latest commit

 

History

98 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SMObjects

Psuedo-Objects in SourceMod as an Extension

Build status Build Status

Installation

Download linux and windows binaries from the build page!

Usage

Object obj = new Object();

obj.SetInt("something", 32); 
obj.SetCell("list", new ArrayList());
obj.GetCell("list").Push(40);

PrintToServer("Some number: %i", obj.GetInt("something"));

delete obj.GetCell("list"); // free ArrayList memory
delete object; // free Object memory

FAQ

Couldn't I just use 'X' instead?

Yes.

Why should I use this?

You probably shouldn't

Why'd you make this?

Because I need to learn C++

About

Psuedo-Objects in SourceMod as an Extension

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages