14 lines
No EOL
319 B
JavaScript
14 lines
No EOL
319 B
JavaScript
// PLPZoneEntityScript.js
|
|
//
|
|
// Created by Si Fi Faye Li on 31 Oct, 2016
|
|
//
|
|
//
|
|
|
|
(function(){ // BEGINS LOCAL SCOPE
|
|
this.enterEntity = function(entityID) {
|
|
print("enter PLP Zone");
|
|
};
|
|
this.leaveEntity = function(entityID) {
|
|
print("leave PLP Zone");
|
|
};
|
|
}); // ENDS LOCAL SCOPE
|