Skip to content

eedson/SMObjects

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 52.2%
  • SourcePawn 47.8%